function getinfo(value) {
         if (value == "monthlycontract") {
            show_div(true);
         } else {
            show_div(false);
         }
      }

      function show_div(show) {
         if (show == true) {
            document.getElementById('hide').style.display = "";
            document.getElementById('hide').style.visibility = "visible";
         } else {
            document.getElementById('hide').style.display = "none";
            document.getElementById('hide').style.visibility = "hidden";
         }
      }
						
						function jump(val) {
val = val;
window.location.href = val;
}

function popUp(URL,w,h) {
  w += 32;
  h += 96;
  wleft = (screen.width - w) / 2;
  wtop = (screen.height - h) / 2;
  var win = window.open(URL,
    name,
    'width=' + w + ', height=' + h + ', ' +
    'left=' + wleft + ', top=' + wtop + ', ' +
    'location=no, menubar=no, ' +
    'status=no, toolbar=no, scrollbars=yes, resizable=yes');
  // Just in case width and height are ignored
  win.resizeTo(w, h);
  // Just in case left and top are ignored
  win.moveTo(wleft, wtop);
  win.focus();
}

     