function deobfuscate(divid,type) {
	var xmlHttp;
	try { xmlHttp=new XMLHttpRequest(); }
	catch (e) {
		try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }
		catch (e) {
			try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
			catch (e) { alert("Your browser does not support the technology that allows rating on items."); return id; }
		}
	}
	xmlHttp.open("GET","/insane/getemail.php?name="+type,true); xmlHttp.send(null);
	xmlHttp.onreadystatechange=function() {
		if(xmlHttp.readyState==4) {
			document.getElementById(divid).innerHTML = xmlHttp.responseText;
		}
	}	
}
