function goPopFlash(){
	//Pop-under window- By JavaScript Kit
	//Credit notice must stay intact for use
	//Visit http://javascriptkit.com for this script
	//Modified by JOE

	//specify page to pop-under
	var popFlash="demo.html";
	
	//specify popunder window features
	//set 1 to enable a particular feature, 0 to disable
	var winfeatures="width=765,height=400,scrollbars=1,resizable=0,toolbar=0,location=0,menubar=0,status=0,directories=0";
	
	//Pop-under only once per browser session? (0=no, 1=yes)
	//Specifying 0 will cause popunder to load every time
	var once_per_session=0;

	var winflash=null;	
	///No editing beyond here required/////
	
	function get_cookie(HomePageFlash) {
	  var search = HomePageFlash + "=";
	  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 lon(){
		if (get_cookie('popFlash')==''){
			loadpopflash();
			document.cookie="popFlash=yes";
		}
	}
	
	function loadpopflash(){
	
		if (winflash!=null) {
			winflash.location = popFlash;
			winflash.focus();
		}
		else {
			winflash=window.open(popFlash,"",winfeatures);
			winflash.focus();
		}	
	}
	
	if (once_per_session==0){
		loadpopflash();
	}else{
		lon();
	}
}

	var cdFlash, csFlash;

	function Sec(source) {
		for(var i = 0; i < source.length; i++) {
			if(source.substring(i, i + 1) == ":") {
				break;
			}
		}
		return(source.substring(i + 1, source.length)); 
	}
	
	function CountDownSplash() {	
	//Set time at Seconds(' ');
		csFlash = 0 + Sec('0:01');
		cdRepeatFlash(); 
	}
	
	function cdRepeatFlash() {
		csFlash --;
			
		if(csFlash == -1) { 
			csFlash = 59; 
		}
		
		if(csFlash == 0){
			goPopFlash();	
		}else{ 
			cdFlash = setTimeout("cdRepeatFlash()",1000); 
		}
	}
