	function displayWindow(url, width, height)
	{
        noweOkno = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no');
		noweOkno.focus();
	}
	
	function check_del(link)
	{
		if(confirm("Do you want to remove this product from the shopping cart?"))
		{
			document.location=link;
		}
		
		
	}
