function init(){
	if(disclaimerPath!="") getHTML(disclaimerPath, "", "disclaimer")
	divAd = document.getElementById("ad");
	divContent = document.getElementById("content");
	divAd.style.zIndex = "100";
	divContent.style.zIndex = "101";
}

function openChat(){
		window.open('http://www.websitealive5.com/642/rRouter.asp?groupid=642&departmentid=','guest','width=450,height=400');
}

function getHTML(url, pars, div){
	var myAjax = new Ajax.Updater(div, url, {method: 'get', parameters: pars});
}

function swapZIndex(){
	divAd = document.getElementById("ad");
	divContent = document.getElementById("content");	
	if(divAd.style.zIndex == "100"){ 
		divAd.style.zIndex = "101";
		divAd.style.display = "block";
		divContent.style.zIndex = "100";
		divContent.style.display = "auto";
	}else{
		divAd.style.zIndex = "100";
		divAd.style.display = "auto";
		divContent.style.zIndex = "101";
		divContent.style.display = "block";
	}
}