// JavaScript Document

<!--
function openWin(url, name) {
  popupWin = window.open(url, name,
'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=520,height=500,left = 50,top = 50');
}
function openHat() {
  popupWin = window.open('hatsize.htm', '1',
'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=560,height=500,left = 50,top = 50');
}
function popUp(url) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=300,left = 200,top = 200');");
}
//-->

