function new_win(url,w,h){
	var w1=window.open('','new_window','resizable=yes,menubar=no,status=no,scrollbars=no,width=1,height=1');
	w1.close();
	w1=window.open('/online/img.php?pic='+url,'new_window','resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+h+',top=10,left=10');
	w1.onload=w1.focus;
	w1.focus();
}

function openDiv (id,ob) {
	obj = document.getElementById("div" + id);
	if (obj.style.display == "block") {
		obj.style.display = "none";
		ob.className = "";
	} else {
		obj.style.display = "block";
		ob.className = "menu";
	}
}

// === Send Search ===
function sendSearch(){
	var search=document.search.search.value;
	if(search.length<2){
		alert("Слово для поиска слишком короткое!");
	}else{
		document.search.submit();
	}
return false;	
}

// === Send Forum ===
function sendForum(){
	document.formForum.submit();
return false;
}

// === Notify Good ===
function openNotify(url){
	document.getElementById("divNotify").style.display = "block";
	notify.location.href = "/online/product/notify.php?art=" + url;
}

// === Notify Success Basket ===
function showSuccess(){
	obj = top.document.getElementById("divSuccess");
	obj.style.top = top.document.body.clientHeight / 2 - 100 + top.document.body.scrollTop;
	obj.style.left = top.document.body.clientWidth / 2 - 150;
}