function copypa(){

if(document.step1.C1.checked==true)
{
 
if (document.step1.p_street.value!="")
{
document.step1.m_street.value=document.step1.p_street.value;
document.step1.m_apt.value=document.step1.p_apt.value ;
document.step1.m_city.value=document.step1.p_city.value;
document.step1.m_sta.selectedIndex=document.step1.p_sta.selectedIndex ;
document.step1.m_zip.value=document.step1.p_zip.value;
document.step1.m_ctr.selectedIndex=document.step1.p_ctr.selectedIndex ;

}
}


if(document.step1.C1.checked==false)
{
document.step1.m_street.value="";
document.step1.m_apt.value="";
document.step1.m_city.value="";
document.step1.m_sta.selectedIndex=0;
document.step1.m_zip.value="";


}

}


