function printWindow(){

	var centerColumn;
	var rightColumn;

	//Create Array of All HTML Tags
	var allHTMLTags=document.getElementsByTagName("div");
	//Loop through all tags using a for loop
	for (i=0; i<allHTMLTags.length; i++) {
		//Get all tags with the specified class name.
		if (allHTMLTags[i].className=="RightColumn" || allHTMLTags[i].className=="RightColumnHome" ) {
			rightColumn = allHTMLTags[i];			
		}
		else if(allHTMLTags[i].className=="CenterColumn" || allHTMLTags[i].className=="CenterColumnHome") {
			centerColumn = allHTMLTags[i];
		}
	}
	
	var printWindow =  window.open("", "<%= CMSContext.CurrentDocument.DocumentName %> - Print", "menubar=no");
		
		
		printWindow.document.write("<link type=\"text/css\" rel=\"stylesheet\" href=\"/CMSPages/GetCSS.aspx?stylesheetname=BowlesRice\">");
		printWindow.document.write("<link type=\"text/css\" rel=\"stylesheet\" href=\"/CMSPages/GetCSS.aspx?stylesheetname=print-preview\">");
		printWindow.document.write("<style \"> body { background-image: none;background-repeat: none;background-color:white; font: 12px Arial,Tahoma,sans-serif;line-height: 15px;\") </style>");
		
		
		printWindow.document.write("<br /><div id=\"preview-message\"><h3>Print Preview</h3><p>Below is a print preview of this page. This message box will not be included on the printed page. <a href=\"javascript:javascript:void(0)\" onclick=\"document.getElementById('preview-message').style.display='none';window.print();\" alt=\"Print This Page\"><img src=\"/App_Themes/BowlesRice/js/images/print.gif\" alt=\"Print This Page\" width=\"16\" height=\"16\">Print This Page</a> <a href=\"javascript:window.history.back()\" alt=\"Print This Page\"><img src=\"/App_Themes/BowlesRice/js/images/cancel.gif\" alt=\"Exit Print Preview\" width=\"16\" height=\"16\">Exit Print Preview</a></p></div>");
		
		printWindow.document.write("<br /><img alt=\"Bowles Rice McDavid Graff &amp; Love\" style=\"border-bottom: 0px solid; border-left: 0px solid; width: 240px; height: 90px; border-top: 0px solid; border-right: 0px solid\" src=\"/BowlesRice/media/Bowle-Rice/Misc%20Images/bowles-rice.png\" />");
		
		printWindow.document.write(centerColumn.innerHTML + "<br />");
		printWindow.document.write(rightColumn.innerHTML + "<br />");

}
