// Custom Schick Hydro Javascript Functions 

// Set Cookie AJAX & Refresh Current Page
function changeLang(lang){
if (window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
}
else{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
var url = "inc/setcookie.asp?lang=" + lang;
	xmlhttp.onreadystatechange=function(){
		if(xmlhttp.readyState==4)
	 	 	location.reload(true);
		}
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}

			