// Email encryption dice maestro domain
function contact(username,subject) 
{ 
 if (!subject) {
 var subline = '?subject=Your enquiry to Dice Maestro';
 }
 else {
 var subline = '?subject=' + subject
 var atsym = String.fromCharCode(38,35,54,52,59)
 }
 var domain = 'dicemaestro.com'; 
 location.href = String.fromCharCode(109,97) + 'ilt' + String.fromCharCode(111,58) + username + '@' + domain + subline; 
 Else 
}
// Email display dice maestro domain
function displaymail(username) 
{ 
 var domain = 'dicemaestro.com';
 var atsym = String.fromCharCode(38,35,54,52,59)
 var address = username + atsym + domain;
 document.write(address)
}
// Set status bar message
function MM_displayStatusMsg(msgStr) { //v1.0
  window.status=msgStr;
  document.MM_returnValue = true;
}
//-->