<!--
var popup="Sorry, right-click is disabled.\n\nVIP Services Copyright © 2005";
function noway(go) {
if (document.all) {
if (event.button == 2) {
alert(popup);
return false;
}
}
if (document.layers) {
if (go.which == 3) {
alert(popup);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=noway;

function Validator(theForm)
{
  if (theForm.username.value == "")
  {
    alert("Please enter a value in the \"Username\" field.");
    theForm.username.focus();
    return (false);
  }

  if (theForm.passwd.value == "")
  {
    alert("Please enter a value in the \"Password\" field.");
    theForm.passwd.focus();
    return (false);
  }
  return (true);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function myWindow() {
myMsg=open('Admin1/P.php', 'Enlarge',
'screenX=100,screenY=120,resizable=no,outerwidth=400,outerheight=300');
}

function oWindow(theURL,winName) {

   remote = window.open(theURL,winName,'width=500,height=490,scrollbars=yes,resizable=no,menubar=no');

}

//-->
