/* Used for onload code on Home Page as onload code in the domino form and also set in the add load event does not work together */
function skipintro(){
	s = getCookie('skipintro');
	//alert(s)
	//console.log(s );
	if(s){
	location.replace("http://"+domain+path+"home!open&country="+s)
	}
}
addLoadEvent(function (){
skipintro();
 });




