function handeShipmentAddy( )
{
	var f = document.ProfileForm;
	if(f.i___ship_sameaddy.checked==true)
	{
    f.i___ship_first_name.value="";
    f.i___ship_last_name.value="";
    f.i___ship_title.value="";
    f.i___ship_salutation.selectedIndex=0;
    f.i___ship_company_name.value="";
    f.i___ship_street.value="";
    f.i___ship_street_no.value="";
    f.i___ship_city.value="";
    f.i___ship_zip.value="";
    f.i___ship_country.selectedIndex=0;
	}
}

function otherShipmentAddy( )
{
	var f = document.ProfileForm;
	if(f.i___ship_sameaddy.checked==true)
	{
    f.i___ship_sameaddy.checked=false;
	}
}