// JavaScript Document

function openWin(theURL) { //v2.0
  newWin = window.open(theURL,'win','width=520,height=430,scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1');
  setTimeout("newWin.focus()", 200);
}

function openWin02(theURL) { //v2.0
  newWin = window.open(theURL,'win','width=510,height=550,scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=1,resizable=1');
  setTimeout("newWin.focus()", 200);
}

function openWin03(theURL) { //v2.0
  newWin = window.open(theURL,'win','width=570,height=585,scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=1,resizable=1');
  setTimeout("newWin.focus()", 200);
}

