/*****************************************************************************************************
Versie	Datum		Auteur			Omschrijving
1.00	01-09-2007	Bart Meijering	Eerste versie
*****************************************************************************************************/

function writeMailLink(name, company, text, subject)
{
	var r = name + '@' + company;
		
	if (text == "" && subject == "")				// text == 0 and subject == 0
	{
		document.write('<a href=\"mailto:' + r + '\">' + r + '</a>');
	}	
	else if (text == "" && subject != "")			// text == 0 and subject == "<subject>"
	{	
		document.write('<a href=\"mailto:' + r + '?subject=' + subject + '\">' + r + '</a>');
	}	
	else if (text != "" && subject == "")			// text=="<text>" and subject == 0
	{
		document.write('<a href=\"mailto:' + r + '\">' + text + '</a>');
	}	
	else										// text=="<text>" and subject == "<subject>"
	{
		document.write('<a href=\"mailto:' + r + '?subject=' + subject + '\">' + text + '</a>');
	}	
}





