function openPrint(src, format)
{
	if (format == "Portrait")
		{
		//portrait
		w=745;
		h=500;
		}
	else
		{
		//landscape
		w=850;
		h=520;
		}
	var w=window.open(src, "printWindow", "width="+w+",height="+h+",scrollbars=yes,menubar=yes,locationbar=yes,statusbar=yes,toolbar=yes,resizable=yes");
 	w.focus();
}
