function myDoPrint(objWindow){
	if (blPrintWindowOpen()){
		printWindow.focus();//make the preview window bubble to surface
	}else{
	objPrint = new objPrintObject();
	blIsOpen = true;
	opener = objWindow;
	printWindow = window.open("", "PrintVersion", 'left=100,screenX=200,top=50,screeny=100,toolbar=yes,menubar=yes,width=760,height=500,modal=yes,scrollbars=yes,status=yes');
	printWindow.document.bgColor="white";
	printWindow.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html401/loose.dtd\"><html><head>");
	printWindow.document.write("<link rel=\"stylesheet\" href=\"./css/print.css\">");
	printWindow.document.write("<link rel=\"stylesheet\" href=\"" + url + "/style/style.css\" type=\"text/css\">");
	printWindow.document.write("<link rel=\"stylesheet\" href=\"" + url + "/style/print.css\" type=\"text/css\" media=\"print\"></head>");
	printWindow.document.write("<body><div align=\"center\"><table width=\"640\"" + strTableAttributes + "><tr><td width=\"640\">")
	printWindow.document.write(objPrint.header);
	printWindow.document.write(getStraightLine());
	printWindow.document.write(objPrint.breadcrumb);
	printWindow.document.write(getDottedLine());
	printWindow.document.write("</td><table" + strTableAttributes + " width=\"640\"><tr><td>");
	printWindow.document.write(objPrint.banner);
	printWindow.document.write(objPrint.content);
	printWindow.document.write("</td>" + objPrint.rightColumn);
	printWindow.document.write("</tr></table><div align=\"center\"><p>&nbsp;</p>");
	printWindow.document.write(objPrint.printButtons+"</div>");
	printWindow.document.write("</td></tr></table></div></body></html>");
	printWindow.document.close();
	}
}
