
var splashpage={
// Splash Page Script Activation (1=enabled, 0=completely disabled!)
splashenabled: 1,

//1) URL to file on your server to display as the splashpage
splashpageurl: "/splash.html",

//2) Enable frequency control? (1=yes, 0=no)
enablefrequency: 1,

//3) display freqency: "sessiononly" or "x days" (string value). Only applicable if 3) above is enabled
displayfrequency: "4 days",

//4) HTML for the header bar portion of the Splash Page
// Make sure to create a link that calls "javascript:splashpage.closeit()")
// An IE bug means you should not right align any image within the bar, but instead use "position:absolute" and the "right" attribute

//defineheader: '<div style="padding: 5px; color: white; font: bold 16px Verdana; background: black url(blockdefault.gif) center center repeat-x;"><a style="position:absolute; top: 2px; right: 5px" href="javascript:splashpage.closeit()" title="Skip to Content"><img src="skip.gif" border="0" width="114px" height="23px" />REMOVE</a>Bought to you by Google Image...</div>',
defineheader: '<div id="top_strip"><div id="top_strip_bg"><a href="javascript:splashpage.closeit()"></a></div></div>',
//5) cookie setting: ["cookie_name", "cookie_path"]
cookiename: ["splashpagecookie", "path=/"],

//6) Auto hide Splash Page after x seconds (Integer value, 0=no)?
autohidetimer: 0,

////No need to edit beyond here//////////////////////////////////

launch:false,
browserdetectstr: (window.opera&&window.getSelection) || (!window.opera && window.XMLHttpRequest), //current browser detect string to limit the script to be run in (Opera9 and other "modern" browsers)

output:function(){
	//document.write('<div id="top_strip" style="position: absolute; z-index: 100; color: white;">><div id="top_strip_bg"><a href="#"><img src="images/skip.gif" alt="" border="0" /></a></div></div>')
	document.write('<div id="slashpage" style="position: absolute; z-index: 100; color: white;">') //Main splashpage container
	document.write(this.defineheader) //header portion of splashpage
	document.write('<iframe name="splashpage-iframe" src="about:blank" style="margin:0; padding:0; width:100%; height: 100%; border: 0;" border="0" marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=no></iframe>') //iframe
	document.write('<br />&nbsp;</div>')
	this.splashpageref=document.getElementById("slashpage")
	this.splashiframeref=window.frames["splashpage-iframe"]
	this.splashiframeref.location.replace(this.splashpageurl) //Load desired URL into splashpage iframe
	this.standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body
	if (!/safari/i.test(navigator.userAgent)) //if not Safari, disable document scrollbars
	this.standardbody.style.overflow="hidden"
	this.splashpageref.style.left=0
	this.splashpageref.style.top=0
	this.splashpageref.style.width="100%"
	this.splashpageref.style.height="100%"
	this.moveuptimer=setInterval("window.scrollTo(0,0)", 50)
},

closeit:function(){
	clearInterval(this.moveuptimer)
	this.splashpageref.style.display="none"
	this.splashiframeref.location.replace("about:blank")
	this.standardbody.style.overflow="auto"
},

init:function(){
	if (!Browser.Engine.trident4) {
		if (this.enablefrequency==1){ //if frequency control turned on
			if (/sessiononly/i.test(this.displayfrequency)){ //if session only control
				if (this.getCookie(this.cookiename[0]+"_s")==null){ //if session cookie is empty
					this.setCookie(this.cookiename[0]+"_s", "loaded")
					this.launch=true
				}
			}
			else if (/day/i.test(this.displayfrequency)){ //if persistence control in days
				if (this.getCookie(this.cookiename[0])==null || parseInt(this.getCookie(this.cookiename[0]))!=parseInt(this.displayfrequency)){ //if persistent cookie is empty or admin has changed number of days to persist from that of the stored value (meaning, reset it)
					this.setCookie(this.cookiename[0], parseInt(this.displayfrequency), parseInt(this.displayfrequency))
					this.launch=true
				} 
			}
		}
		else //else if enablefrequency is off
			this.launch=true
		if (this.launch){
			this.output()
			if (parseInt(this.autohidetimer)>0)
				setTimeout("splashpage.closeit()", parseInt(this.autohidetimer)*1000)
		}
	}
},

getCookie:function(Name){
	var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
	if (document.cookie.match(re)) //if cookie found
		return document.cookie.match(re)[0].split("=")[1] //return its value
	return null
},

setCookie:function(name, value, days){
	var expireDate = new Date()
	//set "expstring" to either an explicit date (past or future)
	if (typeof days!="undefined"){ //if set persistent cookie
		var expstring=expireDate.setDate(expireDate.getDate()+parseInt(days))
		document.cookie = name+"="+value+"; expires="+expireDate.toGMTString()+"; "+splashpage.cookiename[1] //last portion sets cookie path
	}
else //else if this is a session only cookie setting
	document.cookie = name+"="+value+"; "+splashpage.cookiename[1] //last portion sets cookie path
}

}

if (splashpage.splashenabled==1) { //splashpage.browserdetectstr && 
	/*splashpage.init()*/
}





var loaded = false;
window.addEvent('load', function() {

})
window.addEvent('domready', function() {

       /*
        $$('.avoda .graph_int')[0].set('tween', {duration: '3000'}).tween('width', '10');
        $$('.kadima .graph_int')[0].set('tween', {duration: '3000'}).tween('width', '10');
        */

    

	if ($('pass')) {
	$('pass').addEvents({
		'focus': function(){
		//console.log('logged');
		this.setStyle('display','none');
		$('real_pass').setStyle('display','block');
		$('real_pass').focus();
		//if (this.get('value') == 'סיסמא' ) {
		//this.set('value', '').setProperty('type','password');
		//alert('me is MSIE');
		//console.log('hello');
		//}
		} 
	});
	}

	/*if(!loaded) 
	{
		$('content').setStyle('opacity', '0');
	}*/
	if ($('ajax_form')) {
	$('ajax_form').addEvent('submit', function(e) {
		new Event(e).stop();
		//var log = $('log_res').empty().addClass('ajax-loading');
		/*this.send({
			update: log,
			onComplete: function(res) {
				alert(res);
				log.removeClass('ajax-loading');
			}
		});*/
		
		var req = new Request({

			url: '/proxy.php?url=' + escape("/tz_list/?find="+ $('tz_field').value),

			onSuccess: function(txt){
				if (txt == 1) {
					//register, change picture
					$('result_image').src = "/images/prime-n-pic-vi.gif";
					return false;
				//$('result').set('text', txt);
				}
				else {
				$('result_image').src = "/images/prime-n-pic-x.gif";
				return false;
				
				//change picture to faild...
				}
			}

		});
		
		req.send();
	});
	
	}
	});

/*window.addEvent('load',function(){ 
	$('content').setStyle('opacity', '1');
	loaded = true;
});

//$$('.buttons #play2').addEvent('click',V2.play.bind(V2,[false]));
*/
