// Java Document
function openMail(name_str)
{
   	
    email_str = name_str + '@knetbank.ch';
       
    mail_str = "mailto:" + email_str // + "&subject=" +  "write the subject here";
    // mail_str += "&body=" +  "write the body here";
    location.href = mail_str;
}

