// JavaScript Document
function createemailaddress(){ //dynamically create an email address and start email program
// 1st argument is the username part of the email
// 2nd argument is the domain name part of the email
// 3rd argument is the subject of the email

        var b,x,s,j=createemailaddress.arguments;
		var w='?subject=';
		var y='mai';
		var z='lto';
	
        if(j && (j.length == 3 )){           // if the 3 arguments to this routine exist
           /*
           * This function is designed to create an email address dynamically.  This will
           * hide the email address from bots that surf the net for addresses.  Assigning 
           * email string to the location of the window calls the mail program.
           */      
           x= j[0] + '@' + j[1];  // build email address
       
           s = w + j[2];          // build subject request
             
           b = y + z + ':' + x + s;
           window.location = b;   // start the email server for this email address and subject
		   } 

        }
	
