function printProduct()
{
	if (Prototype.Browser.Opera) 
	{
		var printWindow = window.open(location.href + '/print', "printWindow", "scrollbars=yes");
		printWindow.focus();
	}
	else
	{
		$("printContent").src = location.href + '/print';	
	}
	
}

