var lay = '<div id="printbutton" align="center"><button  style="FONT-SIZE:9pt;color:black;font-weight:bold;height:18pt;width:35pt;line-height:14pt;" onclick="javascript:window.print()"> Print </button><br><br></div>';
//var onload = " function window.onload(){document.title = window.name;} "
function window.onbeforeprint(){  
	var obj = document.getElementById("printbutton");
	if(obj)obj.style.display = "none";
} 

function window.onafterprint(){  
	var obj = document.getElementById("myWin");
	if(obj)obj.style.display = "";
}

function prev()
{
	//var title = document.title;    
        var title = "KONG YUE website"    
        var tab = document.getElementById("PrintTab"); 
	var win = window.open("", "title");
	var script = "<script language=javascript>";
	script += String(window.onbeforeprint);
	script += String(window.onafterprint);
        //script += onload;
	script += "<\/script>";
	
	win.document.open();
        win.document.write('<Link REL="stylesheet" Type="text/css" HREF="../command/printstyle.css">');
        win.document.write(script + lay +'<div align="center" class="bold">'+title+'</div>'+ tab.outerHTML);
	win.document.close();
}