//<script language="javascript">
var Original;
function popup(hLocation,w,h) {
	if (arguments.length < 2) w=360;
	if (arguments.length < 3) h=380;
	var popupWin = window.open(hLocation, '', 'width=' +w +' , height=' + h +', scrollbars=yes, resizable, menubar=no,left=10,top=10')
	popupWin.focus();
	return false;
}
function toBasket(redir,qnt,prodID) {
	var mainurl = "acceptor.asp?db=r_product_basket&id=0&quantity=" + qnt + "&product_id=" + prodID;
	if (redir=='') { 
		popup(mainurl,480,130); 
	} else {
		document.location=mainurl + "&redirect_url=" + redir;
	}
}

