//******************************************************************************************************
function InsertEmailAddress(vFormObject, vFormValue)
{
	if(vFormValue == 1)
	{
		document.getElementById(vFormObject).href = 'mailto:info@itnt.co.za&Subject=Enquiry from ITNT.co.za';
	}
	
	if(vFormValue == 2)
	{
		document.getElementById(vFormObject).href = 'mailto:cv@itnt.co.za?subject=Application for employment&body=insert your cv to apply for position';
	}
	
	
	if(vFormValue == 3)
	{
		document.getElementById(vFormObject).href = 'mailto:support@itnt.co.za?subject=Sentinal 2 week trial request&body=Please enter your contact details here.';
	}
	
	if(vFormValue == 4)
	{
		document.getElementById(vFormObject).href = 'mailto:support@itnt.co.za?subject=Business ADSL Fibre Solution request&body=Please enter your contact details here.';
	}

	}
//******************************************************************************************************