
function cloaker($name,$domain,$vis) {
var static=String.fromCharCode(109,97,105,108,116,111,58);
document.write("<a href=\"");
document.write(static);
document.write($name);
document.write(String.fromCharCode(64));
document.write($domain);
document.write("\">");
document.write($vis);
document.write("</a>");

}


function unblur() {
	this.blur();
} 
function blurLinks() {
	if (!document.getElementById) return;
	theLinks = document.getElementsByTagName("A");
	theAreas = document.getElementsByTagName("AREA");
	for(i=0; i<theLinks.length; i++) {theLinks[i].onfocus = unblur;}
	for(i=0; i<theAreas.length; i++) {theAreas[i].onfocus = unblur;}
  } 

