// JavaScript Document
	
	
var origOnLoad;

function liveWebOnLoad(){
	
	if(typeof(origOnLoad) == 'function') {
		origOnLoad();	
	}
	
		
	
	var client_id = 130;
	var spot_id = 422;
	var validateCode = "7285aa20291af316849900908b349fed";
	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;
}

		
