function alert_box()
   {
   alert("I am displayed by a function");
   document.bgColor="#EEEEEE";
   }

function open_win()
   {
   window.open('welcome.html','welcome','width=300,height=200,menubar=yes,status=yes,location=yes,toolbar=yes,scrollbars=yes');
   }
