 function goHome()
 {
  var domain = new String(location.search).substring(1);
  top.location = "/index.htm?"+RemoveBad(domain);
 }

    function showMedia(contentsURL, winName, winProps, width, height) {
     if (!winName) var winName = "picture";
     if (!winProps) var winProps = "menubar=0,toolbar=0,resizable=0,location=0,status=1,scrollbars=0";
     if (!width) var w = 640; 
     else w = width;
     if (!height) var h = 480;
     else h = height;
     var x = 40; y = 80;
     var args = "width=" + w + ",height=" + h
      + "," + winProps
      + ",screenx=" + x + ",screeny=" + y
      + ",left=" + x + ",top=" + y;
     window.open(contentsURL, winName, args);
    }

    function newWin(contentsURL, winName, winProps, resizable, width, height) {
     if (!winName) var winName = "_blank";
     if (!winProps) var winProps = "menubar=0,toolbar=0,location=0,status=1,scrollbars=1";
     if (!resizable) var r = 0; 
     else r = 1;
     if (!width) var w = 640; 
     else w = width;
     if (!height) var h = 480;
     else h = height;
     var x = 40; y = 80;
     var args = "width=" + w + ",height=" + h
      + "," + winProps + ",resizable=" + r
      + ",screenx=" + x + ",screeny=" + y
      + ",left=" + x + ",top=" + y;
     window.open(contentsURL, winName, args);
    }
