function openinfo(info) { mywind = window.open(info,"news","toolbar=no, location=no, directories=no, resizable=yes, scrollbars=yes, status=no, menubar=no, copyhistory=no, width=700, height=500")} function openwindow(filename,title,width,height) {window.open(filename,title,"width="+width+",height="+height+",resizable=yes,scrollbars=yes,left=" + ((screen.width - 800)/2) + ",top=" + ((screen.height - 600)/2))} function openwindowfull(filename,title) {window.open(filename,title,"fullscreen=yes, resizable=yes,scrollbars=yes")} function getStyleObject(objectId) { if(document.getElementById && document.getElementById(objectId)) return document.getElementById(objectId).style; else if (document.all && document.all(objectId)) return document.all(objectId).style; else if (document.layers && document.layers[objectId]) return document.layers[objectId]; else return false } function showHideObject(objectId) { var styleObject = getStyleObject(objectId); if (styleObject) { if ((styleObject.display == "block" || styleObject.display == "")) styleObject.display = "none"; else styleObject.display = "block"; } else { } } function openinfowh(info, width, height) { if (width<=0) width = 700; if (height<=0) width = 500; mywind = window.open(info,"news","toolbar=no, location=no, directories=no, resizable=yes, scrollbars=yes, status=no, menubar=no,copyhistory=no,width="+width+",height="+height); }