﻿function CreateWindow()
{	var WindowMsg = '';
	var hSize = 500; wSize = 600;
	var tLocation = (screen.height - hSize ) / 2;
	var lLocation = (screen.width - wSize ) / 2;

	WindowMsg += '<html><head><meta http-equiv="Content-Type" content="text/html; charset=big5"><title>重要公告</title>';
	WindowMsg += '<style type="text/css"><!--body { background-color: #FFFFCC; margin: 0px; }';
	WindowMsg += 'body, td { font-size: 18px; font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 150%; color: #333333; }';
	WindowMsg += '.Title { font-size: 36px; line-height: 200%; font-weight: bold; color: #FF0000; }--></style></head>';
	WindowMsg += '<body><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">';
	WindowMsg += '<tr><td align="center" valign="middle">';

	WindowMsg += '<table border="0" cellspacing="0" cellpadding="0"><tr><td><p align="center" class="Title">停机预告</p><p>我们将于 3/25 &lt;五&gt; 下午 6:00 开始进行主机更换及系统维护作业。<BR>各主机、网站将于 3/26 &lt;六&gt; 中午 12:00 维护作业完成后陆续恢复。<BR>造成您的不便，我们深感抱歉</p></td></tr></table><BR>';

	WindowMsg += '<table width="95%" border="0" cellspacing="0" cellpadding="0"><tr><td><p>We are going to maintain our equipment and system, from Mar.25 6:00 pm to Mar.26 12:00 pm.&nbsp;&nbsp;The website will be closed during the above time.<BR><BR>We are very sorry for the inconvenience that we caused you and we anticipate your support in the future. Thank you!!</p></td></tr></table><BR>';

	WindowMsg += '<table border="0" cellspacing="0" cellpadding="0"><tr><td><p align="right">泛亚人力资源集团&nbsp;&nbsp;敬启<BR>Pan Asia Human Resources Management & Consulting Corp</p></td></tr></table><BR>';

	WindowMsg += '</td></tr></table></body></html>';

	wwin = window.open('','announcement','top=' + tLocation + ',left=' + lLocation + ',width=' + wSize + ',height=' + hSize);
	var wd = wwin.document;
	wd.open();
	wd.write(WindowMsg);
	wd.close();
	wd.focus();
}


