function CHANGECONTENT(thelocation,DivID){
	document.getElementById(DivID).innerHTML="";
	if(DivID=='rightSliderFront'){
		hideRightSlider();
		showRightSlider();
 	}
	if(DivID=='leftSliderFront'){
		hideLeftSlider();
		showLeftSlider();
	}
	var xmlhttp=new XMLHttpRequest();
	xmlhttp.onreadystatechange=function(){
		if (xmlhttp.readyState==4 && xmlhttp.status==200){
				document.getElementById(DivID).innerHTML=xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET",thelocation,true);
	xmlhttp.send();
}
function HELP(){
	alert("HELP");
}
