//Create a new window
function OpenWin()
{
	//var openw = window.open("productview.asp?id=" + arguments[0],'ProductView','width=600, height=400,menubar=0,toolbar=0,status=1,resizable');
	var openw = window.open("/en/productview.asp?id=" + arguments[0],'_blank',',menubar=1,toolbar=1,status=1,scrollbars=yes, location=1, resizable');
	if(openw == null)
	{
		alert("Failure to Create a New Window, Just try again.");
	}
}

function AddtoCart()
{
	var openw = window.open("/en/AddtoCart.asp?act=AddtoCart&id=" + arguments[0],'AddtoCart','width=600, height=400,scrollbars=yes,menubar=0,toolbar=0,status=1,resizable');
	if(openw == null)
	{
		alert("Failure to Create a New Window, Just try again.");
	}
}