
function popup(url){
 win = window.open(url);
 //if(window.focus()) {win.focus()}
 //void(0);
 //return false;
}

/*
 This function will copy the player's address to the primary guardian address
*/
function copy_address_to_primary(){
 document.getElementById("form_primaryGuardianHomePhone").value = document.getElementById("form_homePhone").value;
 document.getElementById("form_primaryGuardianAddress").value = document.getElementById("form_address").value;
 document.getElementById("form_primaryGuardianCity").value = document.getElementById("form_city").value;
 document.getElementById("form_primaryGuardianPostalCode").value = document.getElementById("form_postalCode").value;
}

function copy_address_to_secondary(){
 document.getElementById("form_secondaryGuardianHomePhone").value = document.getElementById("form_homePhone").value;
 document.getElementById("form_secondaryGuardianAddress").value = document.getElementById("form_address").value;
 document.getElementById("form_secondaryGuardianCity").value = document.getElementById("form_city").value;
 document.getElementById("form_secondaryGuardianPostalCode").value = document.getElementById("form_postalCode").value;
}
