// JavaScript Document
	
	
var origOnLoad;

function liveWebOnLoad(){
	
	if(typeof(origOnLoad) == 'function') {
		origOnLoad();	
	}
	
		
	
	var client_id = 257;
	var spot_id = 550;
	var validateCode = "64a8b5c3ec4b1c987759028ac0305937";
	var scriptLink = "http://www.webvizio.hu/adminWebSpot/webSpotControl.php";
	var href = document.location.href.toString();
	var href_encoded = encodeURIComponent(href);
	
		
	
	var head = document.getElementsByTagName("head").item(0);
	var script = document.createElement("script");
	script.type = 'text/javascript';
	script.id = 'controlScript';
	script.src = scriptLink+'?client_id='+client_id+'&spot_id='+spot_id+'&href='+href_encoded+'&validateCode='+validateCode;
	head.appendChild(script);
	
}

if(window.addEventListener){ // Mozilla, Netscape, Firefox
	window.addEventListener("load", liveWebOnLoad, false);
} else if (window.attachEvent){ // IE
	window.attachEvent("onload", liveWebOnLoad);
} else if (document.getElementById){
	origOnLoad = window.onload;
	window.onload = liveWebOnLoad;
}

		