function DoPrint() {
if (window.print)
{
var Div1 = document.all.Div1.innerHTML;
var Div2 = document.all.Div2.innerHTML;
// *****************************************************
// Div1&Div2 are the areas to be printed
// *****************************************************
var css = '<style type="text/css" media=all>' +
'p { line-height: 120%}' +
'.ftitle { line-height: 120%; font-size: 18px; color: #000000}' +
'td { font-size: 15px; color: #000000; border-width:1px;background:none;background-color:White;}' +
'</style>';
// *****************************************************
//set the css ,should be the same as the css in the print page
// *****************************************************
var body ='<table width="640" border="0" cellspacing="0" cellpadding="5">' +
' <tr> ' +
' <td class="fbody"> ' +
' <div align="center" class=ftitle>' + Div1 + '</div>' + Div2 +
' </td>' +
' </tr>' +
'</table>';
// ******************************************************
// set the print format
// ******************************************************
document.body.innerHTML = '<center>' + css + body + '</center>';
// ******************************************************
// ok!
// ******************************************************
window.print();
window.history.go(0);
// ******************************************************
// return the print page
// ******************************************************
}
}