function copyData(xTitle)
{
   xObj = document.getElementById(xTitle);
   if(xObj.checked)
   {
       document.dataform.ext_name.value = document.dataform.name.value;
       document.dataform.ext_street.value = document.dataform.street.value;
       document.dataform.ext_city.value = document.dataform.city.value;
       document.dataform.ext_zip.value = document.dataform.zip.value;
       document.dataform.ext_country.selectedIndex = document.dataform.country.selectedIndex;
   }
}

function showObj(xId)
{
   document.getElementById(xId).style.display = '';
   document.getElementById('shopForm').style.display = 'none';
   document.getElementById('shopButton').style.display = 'none';
   document.getElementById('shopLogin').style.display = 'none';
}

function hideObj(xId)
{
   document.getElementById(xId).style.display = 'none';
   document.getElementById('shopForm').style.display = '';
   document.getElementById('shopButton').style.display = '';
   document.getElementById('shopLogin').style.display = '';
}

function copyRegisterData(name,email,title,telephone,street,zip,city,country)
{
   document.dataform.name.value = name;
   document.dataform.email.value = email;
   document.dataform.title.value = title;
   document.dataform.telephone.value = telephone;
   document.dataform.street.value = street;
   document.dataform.zip.value = zip;
   document.dataform.city.value = city;
   document.dataform.country.value = country;
}