function switchValues(val1,val2){	
	var upTXT = document.getElementById(val1);
	var dwTXT = document.getElementById(val2);
	dwTXT.value = upTXT.value;	
}




function informationSwitch() { 
	switchValues("name","s_name");
	switchValues("last","s_last");	
	switchValues("address","s_address");
	switchValues("city","s_city");
	switchValues("state","s_state");
	switchValues("tel","s_tel");
	switchValues("country","s_country");
	switchValues("emailV2","s_email");
	switchValues("faxi","s_fax");
	switchValues("company","s_company");
}

function replaceChars(entry,id) {
	out = "-"; // replace this
	add = ""; // with this
	temp = "" + entry; // temporary holder

while (temp.indexOf(out)>-1) {
	pos= temp.indexOf(out);
	temp = "" + (temp.substring(0, pos) + add + 
	temp.substring((pos + out.length), temp.length));
}
	document.getElementById(id).value = temp;

}
