
function lookup(){ 
	document.frmCurrCond.hidAction.value = "lookup";
}

function resetByCountry(strCountry){
	document.frmCurrCond.ddlState.value = "";
	if (strCountry != "USA") { document.frmCurrCond.ddlStationName.value = ""; }
	document.frmCurrCond.hidAction.value = "lookup"; 
}

function clearZip(){
	document.frmCurrCond.txtZip.value = "";
}

function animateMap(){
	//document.frmCurrCond.action = "wthr_animation.asp";
	window.open('wthr_animation.asp', 'AnimationWindow', 'scrollbars=yes,toolbar=no,location=no,width=700,height=530');
	//document.frmCurrCond.submit();
}