
function showSample(productid)
{    

	var url = "product/"+productid+"/"+"sample_"+productid+".htm"
	 window.open(url, "productSample", "width=610,height=650,scrollbars=yes,toolbar=no,resizable=no,status=yes")
}

function redirectTo(url)
{
	//alert(url);
	window.open(url);
}

function printPage()
{
	window.print();
}

function closeWindow()
{
	window.close();
}