// SET THE STATUS BAR MESSAGE
defaultStatus="Welcome!";

<!-- New Window
function Application(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=730,height=530,left = 0,top = 0');");
}
// End -->

<!-- Rollover Status Bar Message
function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;

} 
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
