<HTML> <script language="javascript"> <!-- begin script function getCookieVal (offset) { var endstr = document.cookie.indexOf (";", offset); if (endstr == -1) endstr = document.cookie.length; return unescape(document.cookie.substring(offset, endstr)); } function fixCookieDate (date) { var base = new Date(0); var skew = base.getTime(); if (skew > 0) date.setTime (date.getTime() - skew); } function getCookie (name) { var arg = name + "="; var alen = arg.length; var clen = document.cookie.length; var i = 0; while (i < clen) { var j = i + alen; if (document.cookie.substring(i, j) == arg) return getCookieVal (j); i = document.cookie.indexOf(" ", i) + 1; if (i == 0) break; } return null; } function setCookie (name,value,expires,path,domain,secure) { document.cookie = name + "=" + escape (value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : ""); } function deleteCookie (name,path,domain) { if (getCookie(name)) { document.cookie = name + "=" + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + "; expires=Thu, 01-Jan-70 00:00:01 GMT"; } } function activateCookies () { if (condition == "new") { self.main.location = "custom.html" } else { self.main.location = "start.html"; self.main.location = 'http://random.yahoo.com/bin/ryl'; randomJump(); } } function randomJump() { self.main.location = "start.html"; self.main.location = 'http://random.yahoo.com/bin/ryl'; randomId = setTimeout (randomJump, repeatAfter); } if (getCookie ("ngopalanrandomstart") == null) { condition ="new"; document.writeln ('<HEAD><TITLE>Nagarajan Gopalan\'s Random Start Page</TITLE></HEAD>'); } else { condition ="old"; var cookieValue = getCookie ("ngopalanrandomstart"); var len = cookieValue.length; userName = cookieValue.substring (cookieValue.indexOf("user$")+5, cookieValue.indexOf("freq$")); frequency = cookieValue.substring (cookieValue.indexOf("freq$")+5, len); var repeatAfter = eval (frequency); repeatAfter = repeatAfter*1000; htmlText = '<HEAD><TITLE>'+userName+'\'s Random Start Page</TITLE></HEAD>' document.writeln (htmlText); } // end script --> </script> <FRAMESET onLoad="activateCookies();"FRAMESPACING=0 MARGINWIDTH=0 MARGINHEIGHT=0 BORDER=0 ROWS="*,60"> <FRAME SRC="start.html" NAME= "main" SCROLLING= "AUTO" NORESIZE> <FRAME SRC="bottom.html" NAME= "bottom" SCROLLING= "NO" NORESIZE> </FRAMESET> <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#FF0000"> <NOFRAMES> <P> If you are seeing this message, it is because you are using a browser that does not support frames. </P> </NOFRAMES> </BODY> </HTML>