function OpenImage (c) { 
 window.open(c, 'Detail view','width=512,height=400,scrollbars=no,status=yes');
 }

function sendto (d, a, t) {
 var atsign = String.fromCharCode(64); // @
 document.write('<a href="mailto:');
 document.write(a + atsign + d);
 if (t==null || t.length==0) {
  document.write('\">'+a + atsign + d);
 } else {
  document.write('\">'+t);
 }
 document.write('<\/a>');
}


function sendto (domain, account, text) {
 var atsign = String.fromCharCode(64); // @
 document.write('<a href="mailto:');
 document.write(account + atsign + domain);
 if (text==null || text.length==0) {
  document.write('\">');
  document.write(account + atsign + domain);
 } else
  document.write('\" title=\"'+text+'\">'+text);
  document.write('<\/a>');
}
