var provinceIdChoosen='-1';
var cityIdChoosen='-1';
var countryIdChoosen='-1';
var provinceIdChoosenArr=new Array();
var cityIdChoosenArr=new Array();
var countryIdChoosenArr=new Array();
var areaChooserNamePrefix=null;
var areaChooserCurrentUrl='/global/area/selectArea.html?province_id=-1&city_id=-1&country_id=-1';
var chooseAreaOpenLeft=Math.floor((screen.width-612)/2)+'px';
var chooseAreaOpenTop='30px';
var chooseAreaDocument=null;
function chooseAreaLeft(left){
	chooseAreaOpenLeft=left;
}
function chooseAreaTop(top){
	chooseAreaOpenTop=top;
}
function chooseAreaOk(provinceId,provinceName,cityId,cityName,countryId,countryName){
	if(areaChooserNamePrefix){
		provinceIdChoosenArr[areaChooserNamePrefix]=provinceId;
		cityIdChoosenArr[areaChooserNamePrefix]=cityId;
		countryIdChoosenArr[areaChooserNamePrefix]=countryId;
	}else{
		provinceIdChoosen=provinceId;
		cityIdChoosen=cityId;
		countryIdChoosen=countryId;		
	}
	areaChooserCurrentUrl='/global/area/selectArea.html?province_id='+provinceId+'&city_id='+cityId+'&country_id='+countryId;
	top.areaChooserFRM.location.href=areaChooserCurrentUrl;
	top.getElement('areaChooser').style.visibility='hidden';
	top.getElement('areaChooserBg').style.visibility='hidden';
}
function chooseAreaCancel(){
	top.getElement('areaChooser').style.visibility='hidden';
	top.getElement('areaChooserBg').style.visibility='hidden';
}
function chooseAreaOpen(event,prefix){	
	if(top.href!=location.href){
		top.chooseAreaDocument=window;
	}
	if(prefix){
		areaChooserNamePrefix=prefix;
	}else{
		areaChooserNamePrefix=null;
	}
	top.getElement('areaChooserBg').style.width=top.getWindowSize()[2]+'px';
	top.getElement('areaChooserBg').style.height=top.getWindowSize()[3]+'px';
	top.getElement('areaChooserBg').style.left='0px';
	top.getElement('areaChooserBg').style.top='0px';
	top.getElement('areaChooserBg').style.visibility='visible';
	
	top.getElement('areaChooser').style.width='612px';
	top.getElement('areaChooser').style.height='351px';
	top.getElement('areaChooser').style.left='240px';
	top.getElement('areaChooser').style.top=(40+top.getWindowSize()[0])+'px';
	var url='';
	if(areaChooserNamePrefix){
		url='/global/area/selectArea.html?province_id='+provinceIdChoosenArr[areaChooserNamePrefix]+'&city_id='+cityIdChoosenArr[areaChooserNamePrefix]+'&country_id='+countryIdChoosenArr[areaChooserNamePrefix];
	}else{
		url='/global/area/selectArea.html?province_id='+provinceIdChoosen+'&city_id='+cityIdChoosen+'&country_id='+countryIdChoosen;
	}
	if(areaChooserCurrentUrl!=url){
		top.areaChooserFRM.location.href=url;
	}	
	top.getElement('areaChooser').style.visibility='visible';
}

function chooseAreaOpenOnlyCity(event,prefix){	
	if(top.href!=location.href){
		top.chooseAreaDocument=window;
	}
	if(prefix){
		areaChooserNamePrefix=prefix;
	}else{
		areaChooserNamePrefix=null;
	}

	top.getElement('areaChooserBg').style.width=top.getWindowSize()[2]+'px';
	top.getElement('areaChooserBg').style.height=top.getWindowSize()[3]+'px';
	top.getElement('areaChooserBg').style.left='0px';
	top.getElement('areaChooserBg').style.top='0px';
	top.getElement('areaChooserBg').style.visibility='visible';
	
	top.getElement('areaChooser').style.width='612px';
	top.getElement('areaChooser').style.height='451px';
	top.getElement('areaChooser').style.left=chooseAreaOpenLeft;
	top.getElement('areaChooser').style.top=top.getWindowSize()[0]+'px';
	var url='';
	if(areaChooserNamePrefix){
		url='/global/area/selectArea.html?onley_city=1&province_id='+provinceIdChoosenArr[areaChooserNamePrefix]+'&city_id='+cityIdChoosenArr[areaChooserNamePrefix]+'&country_id='+countryIdChoosenArr[areaChooserNamePrefix];
	}else{
		url='/global/area/selectArea.html?onley_city=1&pprovince_id='+provinceIdChoosen+'&city_id='+cityIdChoosen+'&country_id='+countryIdChoosen;
	}
	if(areaChooserCurrentUrl!=url){
		top.areaChooserFRM.location.href=url;
	}	
	top.getElement('areaChooser').style.visibility='visible';
}

function chooseAreaInit(){
	if(top.getElement('areaChooserBg')){
		return;
	}	
	
	var str='<div style="position:absolute; visibility:hidden;filter:alpha(opacity=40); background-color:#eeeeee;" id="areaChooserBg" align="center"></div>';
	str+='<div style="position:absolute; visibility:hidden;background-color:#eeeeee;" id="areaChooser" align="center">';
	str+='<iframe id="areaChooserFRM" name="areaChooserFRM" frameborder="0" vspace="0" hspace="0" height="518" width="612" scrolling="no" src="/global/area/selectArea.html?province_id=-1&city_id=-1&country_id=-1"></iframe>';
	str+='</div>';	
	top.document.body.insertAdjacentHTML('afterBegin', str);
}
