// === Меню ===
function menu(imgName,menuName){
	timeout=clearTimeout(timeout);
	hideDiv();
	if(document.images){eval('document.menu'+imgName+'.src="/pictures/menu/menu'+imgName+menuName+'.gif"');}
}

// === Open Login ===
function openLogin(){
	if(ol!=null && !ol.closed) ol.close();
	var ol=window.open('/login/','openLogin','resizable=no,menubar=no,status=no,scrollbars=no,width=240,height=155,top=10,left=10');
	ol.focus();
return false; 
}

// === Close Login ===
function closeLogin(){
	if(cl!=null && !cl.closed) cl.close();
	var cl=window.open('/exit/','closeLogin','resizable=no,menubar=no,status=no,scrollbars=no,width=240,height=155,top=10,left=10');
	cl.focus();
return false; 
}

// === Add Basket ===
function addBasket(id){
	if(id){
		formName="product"+id;
		count=document.forms[formName].count.value;
		if(ab!=null && !ab.closed) ab.close();
		var ab=window.open('/basket/add.php?product='+id+'&count='+count,'addBasket','resizable=no,menubar=no,status=no,scrollbars=no,width=200,height=200,top=10,left=10');
		ab.focus();
	}
return false;
}

// === Open Big image ===
function Big(shot,w,h) {
	var ScrWindow=window.open('','new_window','resizable=no,menubar=no,status=no,scrollbars=no,width=1,height=1');
	ScrWindow.close();
	ScrWindow=window.open("zoom.html","new_window","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=20,top=20,width="+w+",height="+h+"");
	if (ScrWindow != null && ScrWindow.opener == null) ScrWindow.opener=window;
	ScrWindow.document.open();
	ScrWindow.document.writeln ("<html><head><title>&nbsp;</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>"+
	"<a href='javascript:window.close()'><img src='"+shot+"' height='"+h+"' width='"+w+"' border='0' alt='Закрыть окно'></a>"+
	"</body></html>");
	ScrWindow.document.close();
	ScrWindow.focus();
	return false;
}