function printVersion(){
	newwindow=window.open("","","toolbar=no,width=600,height=600,location=no,scrollbars=yes,menubar=yes,resizable=yes")
	newdocument=newwindow.document;
	newdocument.write("<html><head><style>td {font-size: .8em; font-family: Verdana, Arial, Tahoma, Hevetica, 'san serif'}</style>");
	newdocument.write("</head><body bgcolor='#FFFFFF'>");
	newdocument.write(document.getElementById('divMainBody').innerHTML);
	newdocument.write("</body></html>");
	newdocument.close();
}