
function obf(mess) // obfuscator
{
	
	var source, coded, i, ch, index;
	key = 		"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@1234567890_-.:";
	source =	"M0NOuvwxyzPQR@_-.STUV6WXYZgh7ijk4lmnop5q2abcdefrs3t:ABCDEFGHI1JKL89";
	
	coded = "";                                      
	for (i = 0; i < mess.length; i++) { 
		ch = mess.charAt(i);
		index = source.indexOf(ch);
		coded = coded + key.charAt(index);
	}
	
	var outp = "";
	
	for (i = 0; i <= coded.length; i++) {
		outp = coded.charAt (i) + outp ;
	  }
	
//	  return outp;
return "<a href=\"mailto:" + outp + "\">" + outp + "<\/a>";

}

function pup(url,win,wi,hi) {
    screenWidth=screen.width
    screenHeight=screen.height

    leftPos=Math.round((screenWidth/2)-(wi/2))
    topPos=Math.round((screenHeight/2)-(hi/2))


        window.open(url,win,'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=yes,width='+wi+',height='+hi+',left ='+leftPos+',top ='+topPos);
		
}
