window.name="basewindow"; function init() { if (navigator.appName == "Netscape") { COMDINEWS=window.open("","COMDINEWS","screenX=0,screenY=20,innerHeight=120,innerWidth=160,scrollbars=1,titlebar=0,resizable=0"); }else{ COMDINEWS=window.open("","COMDINEWS","width=200, height=160, statusbar=no, resizeable=no, location=no, titlebar=no, left=0, top=20"); } if (COMDINEWS.monitor) { abc="YES"; }else{ abc="NO"; } if (abc == "NO") { openIt(); } // checkWeather(); } function openIt(URL) { COMDINEWS.location="http://emcomus.org/sample/ppindex.html"; } function getCookieField(name) { var search = name+ "="; var retstr = ""; var offset = 0; var end =0; if (document.cookie.length > 0) { theCookie = unescape(document.cookie); offset = theCookie.indexOf(search); if (offset != -1) { offset += search.length; end = theCookie.indexOf(";", offset); if (end == -1) end = document.cookie.length; retstr = theCookie.substring(offset, end); } } return(retstr) }