
// JavaScript Document
<!--  Begin

/*This function sets the value from the drop down menu into the form that is submitted to extract the radar images.*/
function setfrmRegionsValue(id) {
	var form = document.forms['frmRegions'];
	var radar = form.elements['RadarSite'];
	radar.value = id;
	form.submit();
}

//  End -->

