function serverdown(st){
	var serverTime = new Date(st);
	serverTime = serverTime.getTime();
	var dYear = 2003; //four digit
	var dMonth = 9; //0 (Jan) to 11 (Dec)
	var dDay = 26; //1 to 31
	var dHours = 02; //0 (midnight) to 23 (11 pm)
	var dMinutes = 00; //0 to 59
	var dSeconds = 00; //0 to 59
	var downTime = new Date(dYear, dMonth, dDay, dHours, dMinutes, dSeconds);
	var uYear = 2003;
	var uMonth = 9;
	var uDay = 26;
	var uHours = 04;
	var uMinutes = 00;
	var uSeconds = 00;
	var upTime = new Date(uYear, uMonth, uDay, uHours, uMinutes, uSeconds);
	var serverTimeDate = Date(serverTime);
	var upTimeDate = new Date(upTime);
	var downTimeDate = new Date(downTime);


	if ((serverTime >= downTime) && (serverTime <= upTime)) {
		newWindow = window.open('' ,"serverDown","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=300,height=400,left=30,top=30");
		newWindow.document.writeln('<html>');
		newWindow.document.writeln('<head>');
		newWindow.document.writeln('<title>Service currently unavailable</title>');
		newWindow.document.writeln('<link rel="stylesheet" href="/ssi/stylesheet.css" type="text/css">');
		newWindow.document.writeln('</head>');
		newWindow.document.writeln('<body bgcolor="#ffffff">');
		newWindow.document.writeln('<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td colspan="2" bgcolor="#99CCCC"><img src="/public/images/spacer_transparent.gif" alt="" width="1" height="8" border="0" /></td></tr><tr><td bgcolor="#99CCCC" width="26"><img src="/public/images/spacer_transparent.gif" alt="" width="26" height="1" border="0" /></td><td bgcolor="#99CCCC"><img src="/public/images/navigation/logo_ghc.gif" alt="MyGroupHealth" width="131" height="31" border="0" /></td></tr><tr><td colspan="2" bgcolor="#99CCCC"><img src="/public/images/spacer_transparent.gif" alt="" width="1" height="8" border="0" /></td></tr><tr><td colspan="2"><img src="/public/images/spacer_transparent.gif" alt="" width="1" height="18" border="0" /></td></tr></table>');
		newWindow.document.writeln('<table cellpadding="10" border="0"><tr><td>');
//		newWindow.document.writeln('<p>serverTime: ' + serverTimeDate + '</p>');
//		newWindow.document.writeln('<p>downTime: ' + downTimeDate + '</p>');
//		newWindow.document.writeln('<p>upTime: ' + upTimeDate + '</p>');
		newWindow.document.writeln('<p class="headline">Service currently unavailable</p>');
		newWindow.document.write('<p>We are doing maintenance work on our computer systems and this service is currently unavailable.  We expect service to resume at 4 a.m. We apologize for the inconvenience and thank you for your patience.</p>');
		newWindow.document.write('<a href="javascript:window.close()"><img src="/images/misc/button-close.gif" alt="Close" width="78" height="19" border="0" /></a>');
		newWindow.document.writeln('</td></tr></table>');
		newWindow.document.writeln('</body>');
		newWindow.document.writeln('</html>');
		newWindow.document.close();
	}
}
