<!--
	//when this page loads, lets change all the links to non-https
	//thus when you cancel out you will be forced out to http
	function forceHttpLinks(){
		for(i=0;i<document.links.length;i++)
			document.links[i].href = document.links[i].href.toString().replace("https","http");
	}

	 addEvent(window, 'load', forceHttpLinks);
//-->