// JavaScript Document

function setbg(obj, action){
		if (action==1){
			//show selected bg
			obj.className="MenuBgSel";
		}else{
			//show default background
			obj.className="Menu";
		}
}



//PopUp
function open_window(i,d,title){
	var url = "gallery/index.php?t=" +  title + "&d=" + d + "&i=" + i;
    if (typeof(usrwindow) != 'undefined'){
	if (!usrwindow.closed){usrwindow.close();}}
     usrwindow=window.open(url,'ablak', 'top=0,left=0,resizable=no,hotkeys=yes,width=550,height=500');
}
