function beforeUnloadGpr()
{      
    if (ShowPopup)
    {
        OpenExitPageGpr();
    }	
}

function OpenExitPageGpr()
{
    var FlagAr = sFlag.split("");
    if(!document.layers && isDownload()== false)
    {
            var sLang = getLang();
                        
             if(FlagAr[3]=="2")
            {                    
                    var fileName = "/" + sLang + "/exitpage.htm";
		    var w = 770;
		    var h = 485;
		    var l = (window.screen.width-w)/2;
		    var t = (window.screen.height-h)/2;            
		    window.open(fileName,'ExitPage',"toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,height=" + h + ",width=" + w + ",left="+l+",top="+t);
	    }
            else  if(FlagAr[3]=="3")
            {            
                var w = 800;
                var h = 600;
                var l = (window.screen.width-w)/2;
                var t = (window.screen.height-h)/2;
                window.open('/exitpage.htm?'+sCut,'ExitPage',"toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,height=" + h + ",width=" + w + ",left="+l+",top="+t);
	    }	
            else if(FlagAr[3]=="4")
            {
                    var w = 788;
                    var h = 364;
                    var l = (window.screen.width-w)/2;
                    var t = (window.screen.height-h)/2;
                    window.open('http://www.littlewoodspoker.com/webpagesincludes/exit.htm?'+sCut,'ExitPage',"toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,height=" + h + ",width=" + w + ",left="+l+",top="+t);
            }
    }
}