function show_img(width,height,s_url){
	var imgnwin=window.open(s_url,"imgswin","resizable=yes,scrollbars=yes,toolbar=yes,location=no,directoties=no,status=no,menubar=no,width="+width+",height="+height);
}

function show_bask(width,height,s_url){
	var basknwin=window.open(s_url,"baskswin","resizable=yes,scrollbars=yes,toolbar=no,location=no,directoties=no,status=no,menubar=no,width="+width+",height="+height);
}

function active_win(surl){
	window.opener.document.location=surl;
}

function show_windnews(nom) {
str_link="news_" + nom + ".html"
str_target="windnews"
int_width=250;
int_height=300;

Win_upload=window.open(str_link,str_target,"resizable=no,scrollbars=yes,toolbar=no,width="+int_width+",height="+int_height+",left="+(screen.width-int_width)/2+", top="+(screen.height-int_height)/2);
event.returnValue = false;
}

function AllowOrder(OrderSumStr) {
	var OrderSum=parseFloat(OrderSumStr);
	if (OrderSum<700)
	{	alert("Минимальная сумма заказа 700 рублей");
		return false;
	} else
		return true;
}

