// JavaScript Document


function ViewData(id,ValueShow) {
 window.document.getElementById(id).style.visibility = ValueShow;  // show or hide respective Example*/
 }

function ShowMail(contact, email, emailHost) {
 var clas="mail_link";
 document.write("<a href=" + "mail" + "to:" + email + "@" + emailHost + " class=" + clas + "> Email " + contact + "</a>" + "<br /> ");
}
