	var isFF = navigator.userAgent.indexOf("Firefox") != -1;
	if(typeof EmptyValue == "undefined"){
		EmptyValue = "@";
	}
	var ClickIsLock = false;
	function pg_clickee() {
		pg_clickee_go(0,0);
	}
	var CurrentPopUnder = 0;

	function pg_clickee_go(nbr,maxNbr) {
		
		if(document.getElementById("pg_mail").value == ''){
			document.getElementById("pg_mail").value = EmptyValue;
		}
		if(maxNbr < 10 ) {
			if(nbr == 0 ) {
				document.getElementById("pg_mail").style.backgroundColor = '#C00';
				document.getElementById("pg_mail").style.color = '#FFF';
				nbr = 1;
			} else {
				document.getElementById("pg_mail").style.backgroundColor = '#fff';
				document.getElementById("pg_mail").style.color = '#000';
				nbr = 0;
			}
			maxNbr++;
			setTimeout("pg_clickee_go("+nbr+","+maxNbr+")",100);
		}
	}

	function ClickLock(){
		ClickIsLock=true;
	}
	function ClickUnLock(){
		ClickIsLock=false;
	}
	function ClicSwf(){
		if(ClickIsLock) return false;
		if(MaxPopUnder>CurrentPopUnder){
			if(isFF){
				exit_win = window.open(link_out_exit,'_blank','toolbar=1,location=1,directories=1,status=1,scrollbars=1,resizable=1,copyhistory=1,menuBar=1');
				exit_win.blur();
			}else{
				if (document.getElementById && document.all) {		
					window.open(link_out_exit,"_blank");
					self.focus();
				}
			}
			CurrentPopUnder++;
		}
		pg_clickee();

	}