function PrintContent(){
var pre = '<html><head>' +
'<style>body, div, table{font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #6f7073; }</style>' +
'<Title>James E. Rocco Associates, Inc. Compensation Consulting</Title></head><body>';
var style = '<style type="text/css"><!--'+
'.style1 {font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 12px;color: #EBEBEB;font-weight: bold;}' +
'.style3 {font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 12px;font-weight: bold;color: #6f7073;}' +
'.style4 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #6f7073; }' +
'.style5 {font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 12px;color: #f9a53b;font-weight: bold;}' +
'--></style>';
var post = "</body></html>";
var gwin = open('print.htm', 'hi', 'width=730,height=500,menubar,scrollbars');
var obj = pre + style + '<img src="JERimages/logo.jpg" width="134" height="109" /><br>' + document.getElementById("himage").innerHTML + '<br>' + document.getElementById("content").innerHTML + post; 
gwin.document.write(obj);
gwin.document.close();
gwin.focus();
gwin.print(); 
}