/*****************************************************************************************
JSDecrypt
*****************************************************************************************/

function JSDecrypt(str,strPwd) { 
    var returnstr = ""; 
    var c = 0; 
    for (var i=1;i<str.length + 1;i++) { 
         c = str.charCodeAt(i - 1); 

         c -= strPwd.charCodeAt(i % strPwd.length); 

         returnstr += String.fromCharCode(c & 255); 
    } 
    return returnstr; 
} 

function sendmail(str) { 
 epost = JSDecrypt(str,"sss"); 
//alert(epost);
u = window.location; 
top.window.location="mailto:"+epost; 
} 
