// JavaScript Document
var UserClicked=false;
window.onload="prLinks";
window.onclose="popup";
document.onkeydown=spyclick;
document.onmousedown=spyclick;
function spyclick()
{
   UserClicked=true;
   setTimeout("UserClicked=false",2000);
}

window.onbeforeunload=popupBOU;
function popupBOU()
{
   if(!UserClicked)
   {
         if(getc("adwas")!="true")
         {
                popup();
           }
    }
}
function prLinks()
{
   for(i=0; i<document.links.length; i++)
   {
        document.links[i].onclick=checklink;
   }
}
function checklink()
{
    if(!this.toString().match(document.domain))
   {
          if(getc("adwas")!="true")
          {
               popup();
          }
   }
}

function popup()
{
	var popurl="http://www.goldhand.be/goldhand_nl/farewell.htm"
	var mypopup=window.open("","win1",'width=100,height=100');
if (mypopup){
  mypopup.close();
   winpops=window.open(popurl,"","width=361,height=519,top=0,left=0,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=no")
   setc("adwas","true")
  //alert("You do not have unrequested popup blocking on!");
}
else 
  //alert("Goldhand-Imsa wishes to thank you for visiting our website.\ The best of luck for the further development of your career.");
   setc("adwas","true")
}
//{
//var popurl="http://www.goldhand.be/goldhand_en/farewell.htm"
   //winpops=window.open(popurl,"","width=361,height=519,top=0,left=0,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=no")
  // setc("adwas","true") 
//}
function getc(name){var rs=null;var mc=" " + document.cookie + ";";
var sn=" " + name + "=";var sc=mc.indexOf(sn);var ec;
if (sc!=-1) {sc+=sn.length;ec=mc.indexOf(";",sc);
rs=unescape(mc.substring(sc,ec));}return rs;}
function setc(name,value) {document.cookie=name+"="+escape(value);}
