function put()
{
var chk=document.form1.sel.checked;
if(chk==true)
{
document.form1.sname.value=document.form1.name.value;
document.form1.saddress1.value=document.form1.address1.value;
document.form1.saddress2.value=document.form1.address2.value;
document.form1.scity.value=document.form1.city.value;
document.form1.sstate.value=document.form1.state.value;
document.form1.scountry.value=document.form1.country.value;
document.form1.szip.value=document.form1.zip.value;
}
else
{
document.form1.sname.value='';
document.form1.saddress1.value='';
document.form1.saddress2.value='';
document.form1.scity.value='';
document.form1.sstate.value='';
document.form1.scountry.value='';
document.form1.szip.value='';
}

}
function confirmSubmit()
{
var agree=confirm("Are you sure you wish to continue?");
if (agree)
	return true ;
else
	return false ;
}

