
/**
* rsContactLink
* This function write an clickable e-mail link
*
* Here is an inline example:
* <code>
* rsContactLink('webmaster');
* </code>
* Will generate <a href="mailto:webmaster@rohde-schwarz.com">webmaster@rohde-schwarz.com</a>
*
* Here is an inline example:
* <code>
* rsContactLink('info','rsa.rohde-schwarz.com');
* </code>
* Will generate <a href="mailto:info@rsa.rohde-schwarz.com">info@rsa.rohde-schwarz.com</a>
*
* @param string l local part of the e-mail address
* @param string d domain of the e-mail address
* @example http://www2.rohde-schwarz.com/en/about/rohde_and_schwarz_worldwide/germany-sales_locations.html
*/

function rsContactLink (l, d)
{
	if (!d) d = 'rohde-schwarz.com';
	var m = l + '&#64;' + d;
	document.write('<a href="mai' + 'lto:' + m + '">' + m + '</a>');
}

