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

