/*POP-UP MESSAGE
/ This script Copyright 2002 Scott Hampton - www.creedcomm.com
/ It may be used with permission as long as this notice remains intact & the script is not altered.
*/
function popup(FILE,WIDTH,HEIGHT) {
  Msg = open("" + FILE + ".html","Msg","width=" + WIDTH + ",height=" + HEIGHT + ",scrollbars=yes,toolbar=no,alwaysRaised=yes,screenx=0,screeny=0,top=20,left=20");
  Msg.focus();
}
