function setBlockMenu(){

}

function SwitchMenu(obj)
{

setBlockMenu();
    if(document.getElementById)
    {

	    var el = document.getElementById(obj);
		
	    var ar = document.getElementById("cont").getElementsByTagName("DIV");
		if(el.style.display == "none")
	    {
			
			for (var i=0; i<ar.length; i++) {
				if(ar[i].className=="submenu")
				ar[i].style.display = "none";
			}
			el.style.display = "block";
			setCookie(obj,'1',36000); 
	    }
	    else
	    {
			el.style.display = "none";
	    }
    }
}


function view(title, dir, file, w, h)
{
	if (window.win) { window.win.close(); }
	window.win=window.open('<? echo $rootpath; ?>showphoto.php?title='+title+'&dir='+dir+'&file='+file+'&w='+w+'&h='+h, 'bigphoto', 'width='+w+', height='+h+', status=no, toolbar=no, menubar=no, scrollbars=no');
	window.win.focus();
}