//Erstellt: 27. September 2005

/*
function email(str1,str2)
{
   temp_str = "mailto:"+str1+"@"+str2;
   window.location = temp_str;
}
*/

//Optimiert: (c) 18. November 2008  by M. Ziemke
function email(str1,str2,subj,bod)
{
   if (typeof subj == 'undefined') subj='';
   if (typeof bod == 'undefined') bod='';
   str3 = '?';
   //str3 = '?subject=' + subj.replace(/ /g, "%20");
   if (subj.length > 0) str3 += 'subject=' + subj.replace(/ /g, "%20");
   if (bod.length > 0) {
     if (str3.length > 1) str3 += '&';
     bod = bod.replace(/\n/g, "%0A");
     bod = bod.replace(/ /g, "%20");
     str3 += 'body=' + bod;
     }
   temp_str = "mailto:"+str1+"@"+str2+str3;
   window.location = temp_str;
}