// resize fix for ns4 var origWidth, origHeight; if (document.layers) { origWidth = window.innerWidth; origHeight = window.innerHeight; window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); } } var page_loaded; // set true onload (avoid errors onmouseover/out before page loaded) function initInfoLyr() { page_loaded = true; writeToLayer('infoDiv', ''); // write first message onload } function showLayer(id) { var infoDiv = getElemRefs(id); if (infoDiv && infoDiv.css) infoDiv.css.visibility = "visible"; } function hideLayer(id) { var infoDiv = getElemRefs(id); if (infoDiv && infoDiv.css) infoDiv.css.visibility = "hidden"; } function getElemRefs(id) { var el = (document.getElementById)? document.getElementById(id): (document.all)? document.all[id]: (document.layers)? document.layers[id]: null; if (el) el.css = (el.style)? el.style: el; return el; } function writeToLayer(id, sHTML) { if (!page_loaded) return; var el = (document.getElementById)? document.getElementById(id): (document.all)? document.all[id]: (document.layers)? document.layers[id]: null; if (!el) return; var cntnt = '
' + sHTML + '
'; if (typeof el.innerHTML!="undefined") { el.innerHTML = cntnt; } else if (document.layers) { el.document.write(cntnt); el.document.close(); } } // Variables for layer content var origMsg = '
Åäþ ìðïñåßôå íá äåßôå ðëçñïöïñßåò ó÷åôéêÝò ìå ôéò åéóáãùãÝò ôïõ Çìåñïëïãßïõ. Ãéá íá óõìâåß áõôü ôïðïèåôßóôå ôïí êÝñóïñá óå êÜðïéï link.
'; //var dfltMsg = ""; function open_window(url) { var NEW_WIN = null; NEW_WIN = window.open ("", "RecordViewer", "toolbar=no,width="+600+",height="+400+",directories=no,status=no,scrollbars=yes,resize=no,menubar=no"); NEW_WIN.location.href = url; }