function OpenPopup (c) {
newwin=window.open(c,'window','width=434,height=610,scrollbars=no,status=yes');
newwin.moveTo(10,10);
}

function anno() {
 
// "onShow" is to control the Announcement Table onshow or not. (true or false)	
 var onShow = true;
//  var onShow = false;
  var message = new Array()

  // "message array" is the announcement message in point form
  //message[0] = "<b>WebCT servers will be suspended from 7 August 2009 at 17:00 pm to 18 August 2009 at 10:00 am for the archive of more than 4,000 subject web sites.</b>";
  message[0] = "Student accounts enrolment of academic year <B>2009-2010</B> in WebCT (Blackboard), will be starting on 26 Aug 2009 (Wed). <BR><BR> All the student accounts will <b>NOT</b> be available before the day of student enrolment process.</b>";

  var result = "" ;
  if (onShow == false) {
	result = "<table width=100%  border=0 cellspacing=0 cellpadding=0><tr><td height=27><IMG SRC=images/anno_top_off.jpg WIDTH=231 HEIGHT=27></td></tr><tr><td height=176 background=images/anno_bg_off.jpg><img src=images/spacer.gif width=1 height=1></td></tr></table>";
  } else if (onShow == true) {
	result = "<table width=100%  border=0 cellspacing=0 cellpadding=0><tr><td height=27><IMG SRC=images/anno_top.jpg WIDTH=231 HEIGHT=27></td></tr><tr><td height=176 background=images/anno_bg.jpg class=anno valign=top><ul>";
	
	for (var i=0; i < message.length; i++) {
		result += "<li>" + message[i] + "</li>";
	}
  result += "</ul></td></tr></table>";	
  }
document.write (result);
}
