
function showLatestNews(){
window.open("/latestNews.asp","","top=100,left=100,width=650,height=500,scrollbars=1,resizable=1,status=1")
}

/*
function continuePage(){
var wid=screen.width;wid-=100;
var ht=screen.height;ht-=100;
window.open("/pi/contact.asp","","top=20,left=20,width="+wid+",height="+ht+",location=yes,directories=yes,status=yes,menubar=yes,toolbar=yes,resizable=yes,scrollbars=yes")
}

function closePage(){
location.href="/fairwell.asp?close=1";
}
*/

function closeMe(){
close('self');
}

function shutDown(){
setTimeout("CloseMe()",3000);
}

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 showWin(){
	if (get_cookie('popped')==''){
		showLatestNews();
		document.cookie="popped=yes";
	}
	//showLatestNews();
}

