function openwindow(theURL,width,height)
{
vent1=window.open(theURL,'vent1','width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,toolbar=no,location=no,directories=no,status=no');
vent1.moveTo(50,50);
}

function openwindow2(theURL,width,height)
{
vent1=window.open(theURL,'vent1','width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=no,toolbar=no,location=no,directories=no,status=no');
vent1.moveTo(50,50);
}

function openw(theURL,width,height)
{
vent1=window.open(theURL,'vent1','width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=no,toolbar=no,location=no,directories=no,status=no');
vent1.moveTo(0,0);
}

function popup(url, name, width, height)
{
settings=
"toolbar=yes,location=yes,directories=no,"+
"status=yes,menubar=yes,scrollbars=yes,"+
"resizable=yes,width="+width+",height="+height;

MyNewWindow=window.open(url,name,settings);
}
function MM_popupMsg(msg) { //v1.0
  alert(msg);
}