if(document.getElementById('hnav2_m6'))

{
	addTooltip('hnav2_m6');
	document.getElementById('hnav2_m6').onclick = startContact;
}

	function startContact()
	{
		func = function()
		{
			if(auth!=null)
			{
				document.getElementById('contact_name').value  = firstname+' '+lastname;
				document.getElementById('contact_email').value = email;
			}
			if(document.getElementById('send_contactmail'))
				document.getElementById('send_contactmail').onclick = sndContactmail;	
		};
		getTemplate('./temp/contact.php','content',true, func);
	}

	function sndContactmail()
	{
		contact_name    = document.getElementById('contact_name').value;
		contact_email   = document.getElementById('contact_email').value;
		contact_subject = document.getElementById('contact_subject').value;
		contact_message = document.getElementById('contact_message').value;

		entries  = contact_name+'|'+contact_email+'|'+contact_subject+'|'+contact_message;
		checks   = 'char|email|empty|empty';
		er_mess  = '- kein Vor- und Nachname eingegeben|- keine gültige E-Mail Adresse angegeben|- kein Anliegen angegeben|- kein Nachrichttext';
		if(checkForm(entries,checks,er_mess)!=true)
			alert(checkForm(entries,checks,er_mess));
		if(checkForm(entries,checks,er_mess)==true)
		{
			str = null;
			str = contact_name+"|"+contact_email+"|"+document.getElementById('mailform').value+': '+contact_subject+"|"+contact_message;
			contactmail = null;
			if(contactmail = sndReq("POST", SCRIPT_DIR+'contact.php', 'maildata='+str, true))
			{
				document.getElementById('status').style.visibility = 'visible';
				contactmail.onreadystatechange = function()
				{
					if(contactmail.readyState == 4)
					{
						document.getElementById('status').style.visibility = 'hidden';
						if(contactmail.responseText=='true')
							alert('Vielen Dank! \n\nIhre Nachricht wurde erfolgreich an uns versandt');
					}
				};
			}
		}
	}
