var show = null;

function PopUp(theUrl) {
    show = window.open('','','status=0,menubar=1,width=520,height=480,left=0,top=0,resizable=1,scrollbars=0');
    if (show != null) {
        if (show.opener == null) {
             show.opener = self;
          }
          show.location.href = theUrl;
    }
}

function PopUp2(theUrl) {
    show = window.open('','','status=0,menubar=1,width=600,height=500,left=0,top=0,resizable=1,scrollbars=1');
    if (show != null) {
        if (show.opener == null) {
             show.opener = self;
          }
          show.location.href = theUrl;
    }
}

function PopUp3(theUrl) {
    show = window.open('','','status=0,menubar=0,width=300,height=300,left=0,top=0,resizable=1,scrollbars=1');
    if (show != null) {
        if (show.opener == null) {
             show.opener = self;
          }
          show.location.href = theUrl;
    }
}

function PopUp4(theUrl) {
    show = window.open('','','status=1,menubar=1,width=600,height=500,left=0,top=0,resizable=1,scrollbars=1');
    if (show != null) {
        if (show.opener == null) {
             show.opener = self;
          }
          show.location.href = theUrl;
    }
}

