
function Doit(imgName,imgObjName) {
if (document.images) {
  document.images[imgName].src = imgObjName;
}}

function Launch(page) {
OpenWin = this.open(page, "CtrlWindow", "titlebar=no,toolbar=no,menubar=no,status=no,location=no,scrollbars=no,resizable=no,fullscreen=yes");
}

function Launchx(page) {
OpenWin = this.open(page, "_blank", "titlebar=no,toolbar=no,width=600,height=450");
}

function Launchxx(page, w, h) {
OpenWin = this.open(page, "_blank", "titlebar=no,toolbar=no,width="+w+",height="+h+"");
}

function toggleDiv(id,flagit) {
if (flagit=="1"){
if (document.layers) document.layers[''+id+''].visibility = "show"
else if (document.all) document.all[''+id+''].style.visibility = "visible"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
}
else
if (flagit=="0"){
if (document.layers) document.layers[''+id+''].visibility = "hide"
else if (document.all) document.all[''+id+''].style.visibility = "hidden"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
}
}
