function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}



function popunder(){
newwin=window.open('http://www.hindu.com/icici.htm','','toolbar=no,scrollbars=no,status=no,menubar=no,resizable=no,location=no,left=550,top=250,width=300,height=300');
window.focus();
return;
}
if (get_cookie('popunder')==''){
//alert("1");
popunder();
document.cookie="popunder=yes";
}
else
{
//alert("2");
}
