function clicker(page){ var thediv=document.getElementById('displaybox'); if(thediv.style.display == "none"){ thediv.style.display = ""; thediv.innerHTML = "
"; }else{ thediv.style.display = "none"; thediv.innerHTML = ''; } return false; } function LaunchPopup(page,width,height) { OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,dependent=no,directories=no,width=" + width + ",height=" + height + ",x=50,y=50"); }