// JavaScript Document

function goPopup(url,wdth,hght){
window.open(url,'popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + wdth + ',height=' + hght +',framemargin=0 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0');
}

function quickGo(list)
    {var item=list.options[list.selectedIndex].value;
    if (item!="#") {
    location.href=item;
    }}

function spawn_window(content,spawn,sizing)
{window.open(content,spawn,sizing);}

function startPop(PopEvent)
  {
    var desktop=window.open(PopEvent,"_blank","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=600,height=350,resizable");
  }

function startPopEvent(PopEvent)
  {
    var desktop=window.open(PopEvent,"_blank","toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,width=600,height=350,resizable");
  }

