window.onload = function() {
if(self != top){
  if(parent.showLoginDiv())
  {
	document.getElementById('WarningBox').className = "hide";
	document.getElementById('Login_window').className = "show";
  }
  else{
	if(parent.isWarnLogout()){
		document.getElementById('WarningBox').innerHTML = "<p >User logging out....</p><img src='/newmptimages/masthead/loading.gif' /><br /><br />";
	}
	document.getElementById('WarningBox').className = "show";
	document.getElementById('Login_window').className = "hide";
  }
}
else{
	var myDate = new Date();
	myDate.setDate(myDate.getDate()+5);
	set_cookie('loginrequrl', getLastUrl(),myDate,'paltalk.com');
	window.location="http://chat.paltalk.com";
}
   if (!document.getElementsByTagName) return false;
   var links = document.getElementsByTagName("a");
   for (var i=0; i<links.length; i++) {
      if (links[i].getAttribute("rel") == "external") {
         links[i].onclick = function() {
            return !window.open(this.href);
         }
      }
   }


 if (fetch_cookie('postLogoutMessage') != null) {
	document.getElementById('error_msg').innerHTML = fetch_cookie('postLogoutMessage');
	delete_cookie('postLogoutMessage','paltalk.com');
  }

}
