<!--
  function newwin (url1, width1, height1, xpos1, ypos1,_loc1, _resize1, _menu1, _scroll1, _stat1, _tool1, winname1, closecaller1, trigger2, popdelay, url2, width2, height2, xpos2, ypos2,_loc2, _resize2, _menu2, _scroll2, _stat2, _tool2, winname2, closecaller2) {
    var browser = navigator.appName;

    feat_tail1 = ",location=" + _loc1 + ",resizable=" + _resize1 + ",menubar=" + _menu1 + ",scrollbars=" + _scroll1 + ",status=" + _stat1 + ",toolbar=" + _tool1;
    feat_tail2 = ",location=" + _loc2 + ",resizable=" + _resize2 + ",menubar=" + _menu2 + ",scrollbars=" + _scroll2 + ",status=" + _stat2 + ",toolbar=" + _tool2;

    features="width=640,height=480,top="+ypos1+", left="+xpos1+feat_tail1;

    if (browser  == "Netscape") {
      features1="width="+width1+",height="+height1+",screenY="+ypos1+",screenX="+xpos1+feat_tail1;
      features2="width="+width2+",height="+height2+",screenY="+ypos2+",screenX="+xpos2+feat_tail2;
    }

    if (browser == "Microsoft Internet Explorer") {
      features1="width="+width1+",height="+height1+",top="+ypos1+", left="+xpos1+feat_tail1;
      features2="width="+width2+",height="+height2+",top="+ypos2+", left="+xpos2+feat_tail2;
    }

    
  win1=window.open(url1,winname1,features1);


    if (trigger2 == "true") {
      openurl2= url2;
      openwinname2= winname2;
      openfeatures2= features2;

      if( url2=="rand"){
        var rand1 = 0;
        var useRand = 0;

          if (url1=="http://www.osga.com") {
            popups = new Array;
            popups[1] = new Image();
            popups[1].url = "/osga-psb.html";
            popups[2] = new Image();
            popups[2].url = "/osga-vwager.html";
            popups[3] = new Image();
            popups[3].url = "/osga-toucan.html";
            popups[4] = new Image();
            popups[4].url = "/osga-gecko.html";
            popups[5] = new Image();
            popups[5].url = "/osga-bogart.html";
          }
          if (url1=="http://www.majorwager.com") {
            popups = new Array;
            popups[1] = new Image();
            popups[1].url = "/mjwager-psb.html";
            popups[2] = new Image();
            popups[2].url = "/mjwager-mvp.html";
          }
          if (url1=="http://www.theprescription.com") {
            popups = new Array;
            popups[1] = new Image();
            popups[1].url = "/prescr-psb.html";
            popups[2] = new Image();
            popups[2].url = "/prescr-vw.html";
          }

          if (url1=="http://www.internetcommission.com") {
            popups = new Array;
            popups[1] = new Image();
            popups[1].url = "/igc-psb.html";
            popups[2] = new Image();
            popups[2].url = "/igc-vw.html";
            popups[3] = new Image();
            popups[3].url = "/igc-betvsi.html";
            popups[4] = new Image();
            popups[4].url = "/igc-mvp.html";
          }
          if (url1=="http://www.bettorsworld.com") {
            popups = new Array;
            popups[1] = new Image();
            popups[1].url = "/bworld-mvp.html";
            popups[2] = new Image();
            popups[2].url = "/bworld-psb.html";
          }     
      
        var urlnum = popups.length - 1;
        do {
        var randnum = Math.random();
        rand1 = Math.round((urlnum - 1) * randnum) + 1;
        } while (rand1 == useRand);
        useRand = rand1;
        openurl2=popups[useRand].url;
      }

    //window.open(openurl2,openwinname2,openfeatures2)
     timer = setTimeout("window.open(openurl2,openwinname2,openfeatures2)", popdelay);
    }

    if (closecaller1 == "close") {
        window.focus();
        window.close();
    }
    if (closecaller2 == "close") {
        window.focus();
        window.close();
    }
  }
//-->