function CheckCompanyType (object)
{
	if	(!(object.options[object.selectedIndex].value == 'top'))
	{
		if	(object.options[object.selectedIndex].value == 'End User' || object.options[object.selectedIndex].value == 'Exporter' || object.options[object.selectedIndex].value == 'Other')
		{
			window.location.href = 'registration.asp?CreditCard=1&CompanyType=' + object.options[object.selectedIndex].value
		}
		
		else
		{
			window.location.href = 'registration.asp?CreditCard=0&CompanyType=' + object.options[object.selectedIndex].value
		}
    }
}


