function showEmail(user, domain, tld, title){ 
   var emailId = user + "\u0040" + domain + "." + tld; 
   var url = "mailto:" + emailId; 

   if(!title){ 
       title = emailId; 
   } 
   document.write("<a href='" + url + "'>" + title + "</a>"); 
} 


function open_window(link,width,height)
{
    window.open (link,'app',"location=1,status=1,scrollbars=1,width="+width+",height="+height);
}


function open_window(URL,width,height) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width="+width+",height="+height+",left = 320,top = 0');");
}

                

