// JavaScript Document
function changeCountryCode(val){
	
	var code=val.split("||");
	document.getElementById('countrycodeid1').innerHTML ="<input type=\"text\" name=\"countrycode2\" id=\"countrycode2\ maxlength=\"10\" style=\"width:30px; margin-right:3px;background:url("+wishurl+"/images/flag_input/"+code[0].toLowerCase()+".png) no-repeat; padding-left:20px;padding-top:2px;\" value=\"+"+code[1]+"\" readonly=\"readonly\"/>";
	document.getElementById('countrycodeid').innerHTML ="<input type=\"text\" name=\"countrycode2\" id=\"countrycode2\ maxlength=\"10\" style=\"width:30px; margin-right:3px;background:url("+wishurl+"/images/flag_input/"+code[0].toLowerCase()+".png) no-repeat; padding-left:20px;padding-top:2px;\" value=\"+"+code[1]+"\" readonly=\"readonly\"/>";

}