	function pagePrint(Obj) {

    //var W = Obj.offsetWidth;        //screen.availWidth;
    //var H = Obj.offsetHeight;        //screen.availHeight;
    //var features = "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,width=" + W + ",height=" + H + ",left=0,top=0";
	var features = "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,width=740,height=768,left=0,top=0";
    var PrintPage = window.open("about:blank",Obj.id,features);
    PrintPage.document.open();
    //PrintPage.document.write("<html><head><title></title><style type='text/css'>body, tr, td, input, textarea { font-family:Tahoma; font-size:9pt; }</style>\n</head>\n<body>" + Obj.innerHTML + "\n</body></html>");
	PrintPage.document.write("<html><head><title>Print</title><script language='javascript' src='http://kr.interad.com/printout.js'></script>\n");
	PrintPage.document.write("<link href='http://www.interad.com/css/common.css' rel='stylesheet' type='text/css' />\n");
	PrintPage.document.write("<link href='http://www.interad.com/css/sub_layout.css' rel='stylesheet' type='text/css' />\n	</head>\n");
	PrintPage.document.write("<body topmargin='0' leftmargin='0' marginwidth=0 marginheight=0>\n");
	PrintPage.document.write("<div id='printWrap'><table width='670' border='0' cellspacing='0' cellpadding='0'>\n<tr>\n<td> " + Obj.innerHTML + "\n</td>\n</tr>\n</div></body></html>");
    PrintPage.document.close();
    PrintPage.document.title = document.domain;
    PrintPage.print(PrintPage.location.reload());
}
