

function mkRequest(elemName, text1, linkName, text2, ename, sub, body)
{
   try {

      body =

"Thank you for your interest in the Real Time Logic products.\nPlease complete the following form and Real Time Logic will respond with the information you require.\n\n"+
"First name:   \n"+
"Last name:    \n"+
"URL:          \n"+
"Company:      \n"+
"Phone:        \n"+
"              \n"+
"Address:      \n"+
"City:         \n"+
"State:        \n"+
"Zip:          \n"+
"Country:      \n"+
"Email:\n\n"+
"What is your project schedule?\n\n"+
body;

      var elem=document.getElementById(elemName);
      elem.innerHTML="";
      var a = document.createElement('a');
      a.href='m'+'a'+'i'+'l'+'t'+'o'+':'+ename+'@realtimelogic.com?subject='+
         escape(sub) + "&body=" + escape(body);
      a.innerHTML = linkName;
      if(text1)
         elem.appendChild(document.createTextNode(text1));
      elem.appendChild(a);
      if(text2)
         elem.appendChild(document.createTextNode(text2));
   }
   catch(e) {}
};
