<!--
function toggleTools(){
	var display = document.getElementById('tools').style.display;
	if(display == 'none'){
		document.getElementById('HideTools').style.display = 'block';
		document.getElementById('ShowTools').style.display = 'none';
		document.getElementById('tools').style.display = 'block';
	}else{
		document.getElementById('HideTools').style.display = 'none';
		document.getElementById('ShowTools').style.display = 'block';
		document.getElementById('tools').style.display = 'none';
	}
}
function cityjump(){
	selitem = document.cityselect.cityid.selectedIndex
	if(selitem != 0){
		var winl = (screen.width - 400) / 2;
		var wint = (screen.height - 760) / 2;
		winprops = 'height='+400+',width='+760+',top='+wint+',left='+winl+',screenX='+winl+',screenY='+wint+'';
	
		IDcity = document.cityselect.cityid.value
		
		cityName = document.cityselect.cityid[selitem].text
		window.open('http://media.fcmtravel.com/_modules/time_fcm/popup.php?cityid='+IDcity+'&cityName='+cityName, '_blank',winprops);
	}
}
function weatherjump(){
	selitem = document.selectWeather.weather.selectedIndex
	if(selitem != 0){
		var winl = (screen.width - 200) / 2;
		var wint = (screen.height - 250) / 2;
		winprops = 'height='+180+',width='+330+',top='+wint+',left='+winl+',screenX='+winl+',screenY='+wint+'';
	
		city = document.selectWeather.weather.value
		//alert(city)
		window.open(city, '_blank',winprops);
	}
}
function loadCC(){
		var winl = (screen.width - 386) / 2;
		var wint = (screen.height - 280) / 2;
		winprops = 'height='+280+',width='+386+',top='+wint+',left='+winl+',screenX='+winl+',screenY='+wint+'';
		converter = window.open('about:blank', 'Currency', winprops);
		document.CC.submit();
		converter.focus();
}
//-->

