function Print(){
    var disp_setting="toolbar=no,location=no,directories=no,menubar=no,";
    disp_setting+="scrollbars=yes,width=700, height=650, left=100, top=25";
    var content_vlue = document.getElementById("page-content").innerHTML;
	var content_right = document.getElementById("page-right").innerHTML;

    var win=window.open("","",disp_setting);
    win.document.open();
    win.document.write('<html><head><title>Print Friendly Page</title>');
	win.document.write('<style> html,body {font-family:"Arial"; font-size:12px; font-color:#333333;}</style>');        
    win.document.write('</head><body onload=";self.print()" leftmargin="10">');
    win.document.write(content_vlue);
	win.document.write(content_right);
    win.document.write('</body></html>');
    win.document.close();
    win.focus();
}
