
function go(showflash,width,height){

  if (showflash != "") {

    var str = "height=" + height + ",innerHeight=" + height;
    str += ",width=" + width + ",innerWidth=" + width;
    if (window.screen) {
      var ah = screen.availHeight - 30;
      var aw = screen.availWidth - 10;

      var xc = (aw - width) / 2;
      var yc = (ah - height) / 2;

      str += ",left=" + xc + ",screenX=" + xc;
      str += ",top=" + yc + ",screenY=" + yc;
    }
    str += ",scrollbars=Yes,dependent=Yes"
    //open(DoWhat.value, "remote", str);
     var wintoload4 = open(showflash, "ebizadminpopup",str);
     wintoload4.focus();
  }
}


function ToggleVisibility(element_id) {
	var element = document.getElementById(element_id);
	element.style.display = (element.style.display == '' ? 'none' : ''); 
}