function popup(url, canresize) {
  x = Math.random() * 50;
  y = Math.random() * 50;
  window.open(url, "", "top = " + y + ", left = " + x + ", height = 370, width = 370, menubar = no, resizable = " + canresize + ", status = no");
}


function xxpopupdynamic(url, resizable, height, width, menu, canscroll) {
  x = Math.random() * 50;
  y = Math.random() * 50;
  window.open(url, "", "top = " + y + ", left = " + x + ", height = " + height + ", width = " + width + ", menubar = no, resizable = " + resizable + ", toolbar = " + menu + ", location = " + menu + ", status = no, scrollbars = " + canscroll);
}

function popupmovie(movie, height, width) {
  x = Math.random() * 50;
  y = Math.random() * 50;
  vidscreen=window.open('movie.php', "", "top = " + y + ", left = " + x + ", height = " + height + ", width = " + width + ", menubar = no, resizable = yes, status = no");
  vidscreen.document.cookie=movie;
}

function xxnavigate(url) {
  if (navigator.appName.indexOf("Microsoft")!=-1)
    {
      window.navigate(url);
    }
    else {
      window.location = url;
    }
}

function cascademenu(xctrl) { 
  if (xctrl.style.display == "") { 
    xctrl.style.display = "none"; 
  } 
  else {
    xctrl.style.display = ""; 
  } 
}
