// JavaScript Document

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

tmp_submenu = newImage("images/menuPozadie.jpg");
tmp_submenu_over = newImage("images/pozadie_over.png");


function clearAdvSearch(){
	var elm = document.getElementById('advSearch');
	elm.value = '';
	elm = document.getElementById('rozs');
	elm.submit();
}

function onMenu(id){
	var elm = document.getElementById(id);
	elm.className='roletMenuDivVisible';
}

function offMenu(id){
	var elm = document.getElementById(id);
	elm.className='roletMenuDivHiden';
}

function onSubMenu(id){
	var elm = document.getElementById(id);
	elm.className='roletSubMenuOver';
}

function offSubMenu(id){
	var elm = document.getElementById(id);
	elm.className='roletSubMenu';
}

function tlac(id){
	window.open("print.php?rid="+id , null, "height=600,width=650,status=no,toolbar=no,menubar=no,location=no"); 
}

function testop(id, h, w){
	window.open("galeriaWindow.php?id="+id,null, "height="+w+",width="+h+",status=no,toolbar=no,menubar=no,location=no"); 
}

function testopr(id, h, w){
	window.open("galeriaWindowr.php?id="+id,null, "height="+w+",width="+h+",status=no,toolbar=no,menubar=no,location=no"); 
}

function set_on(obj){
	obj.style.filter="Alpha(opacity=75, finishopacity=75, style=1)";
	obj.style.opacity = 0.8;
}

function set_off(obj){
	obj.style.filter="Alpha(opacity=100, finishopacity=100, style=1)";
	obj.style.opacity = 1;
}

