function hideOnLoad()
{
	if (selectWert(document.newsletterForm.SALUTATION) == 'C')
	{
		$("#companySpacer").fadeIn("normal");
		$("#company").fadeIn("normal");
		$("#customerBeginSpace").fadeIn("normal");
		$("#companyTitle").fadeIn("normal");
		$("#customerEndSpace").fadeIn("normal");
		$("#customerNumberSpacer").fadeIn("normal");
		$("#customerNumber").fadeIn("normal");
		changeTag(firstname,  '<img src="../images/space.gif" width="16">Vorname');
		changeTag(familyname, '<img src="../images/space.gif" width="16">Nachname');
	}
	else
	{
		$("#companySpacer").slideUp('fast');
		$("#company").slideUp('fast');
		$("#customerBeginSpace").slideUp("normal");
		$("#companyTitle").slideUp("normal");
		$("#customerEndSpace").slideUp("normal");
		$("#customerNumberSpacer").slideUp('fast');
		$("#customerNumber").slideUp('fast');
	}
}

function selectWert(sObj)
{
	with (sObj) return options[selectedIndex].value;
}

function changeTag(elem, newtitle)
{
	elem.innerHTML = newtitle;
}


function onSalutationChange()
{
	if (selectWert(document.newsletterForm.SALUTATION) == 'C')
	{
		$("#companySpacer").fadeIn("normal");
		$("#company").fadeIn("normal");
		$("#customerBeginSpace").fadeIn("normal");
		$("#companyTitle").fadeIn("normal");
		$("#customerEndSpace").fadeIn("normal");
		$("#customerNumberSpacer").fadeIn("normal");
		$("#customerNumber").fadeIn("normal");

		changeTag(firstname,  '<img src="../images/space.gif" width="16">Vorname');
		changeTag(familyname, '<img src="../images/space.gif" width="16">Nachname');
	}
	else
	{
		$("#companySpacer").fadeOut("normal");
		$("#company").fadeOut("normal");
		$("#customerBeginSpace").fadeOut("normal");
		$("#companyTitle").fadeOut("normal");
		$("#customerEndSpace").fadeOut("normal");
		$("#customerNumberSpacer").fadeOut("normal");
		$("#customerNumber").fadeOut("normal");

		changeTag(firstname, 'Vorname');
		changeTag(familyname, 'Nachname');
	}
}
