/* Copyright (c) 1995-2008 Choice Hotels International, Inc. All Rights Reserved. */
var stateVerifyLang={CANADA:"Canadá",AUSTRALIA:"Australia",MEXICO:"México",NEW_MEXICO:"Nuevo México",SPAIN:"España",ITALY:"Italia",PUERTO_RICO:"Puerto Rico",SELECT:"Por favor seleccione un estado/provincia para ",NO_SELECT:"Por favor no seleccione un estado/provincia para ",INVALID:"Ha seleccionado un estado/provincia no válido para  "};function basicStateVerify(stateFieldName,countryFieldName,form){var countryIndex=form[countryFieldName].options.selectedIndex;var countryValue=form[countryFieldName].options[countryIndex].value;var countryText=form[countryFieldName].options[countryIndex].text;var stateIndex=form[stateFieldName].options.selectedIndex;var stateValue='';if(stateIndex>=0)stateValue=form[stateFieldName].options[stateIndex].value;var messenger=function(msg){alert(msg)};return validStateCountry(stateValue,countryValue,countryText,messenger)};function validStateCountry(stateCode,countryCode,countryName,messenger){var countriesWithStates=new Array('US','CA','AU','MX','ES','IT','PG');var countryHasStates=(countriesWithStates.indexOf(countryCode)!=-1);var stateIsSelected=(stateCode.length>2);var stateCountry=(stateIsSelected)?stateCode.slice(-2):'';var countryMatchesStateCountry=(countryCode==stateCountry);var isPuertoRico=((stateCountry==''&&countryCode=='PR')||(stateCountry=='PR'&&countryCode=='PR')||(stateCountry=='PR'&&countryCode=='US'));if(isPuertoRico)return true;if(countryHasStates&&!stateIsSelected){messenger(stateVerifyLang.SELECT+countryName);return false}if(countryHasStates&&stateIsSelected&&!countryMatchesStateCountry){messenger(stateVerifyLang.INVALID+countryName);return false}if(!countryHasStates&&stateIsSelected){messenger(stateVerifyLang.NO_SELECT+countryName);return false}return true};