
// Flash is calling this function when: 1) submit button is clicked. 2) when its clock indicates sundown or sunset and change bg to night/day
function weatherDetail(infoArray){
	window.location = "index.asp?s="+infoArray;

}//end function weatherDetail(infoArray)
 

// 
//------------------------------------------------------------------------------------------------------------------------------------
function toggle_watch(the_watch){
	//reset all descriptions
	for (i=1; i<=counter; i++) {document.getElementById('watch_desc_'+i).style.display = 'none';}
	// show description
	document.getElementById('watch_desc_'+the_watch).style.display = 'block';

	//reset all thumb borders
	for (i=1; i<=counter; i++) {document.getElementById('scroll_thumb_'+i).style.border='2px solid transparent';}
	// style current thumb border
	document.getElementById('scroll_thumb_'+the_watch).style.border='2px solid #ac2a19';
}// end function toggle_desc()



// Scroller
//------------------------------------------------------------------------------------------------------------------------------------
function mv2(v){
  document.getElementById('scroll_box').scrollTop=document.getElementById('scroll_box').scrollTop+v;
}
function mv(v){
tid=setInterval("mv2("+v+")",50);
}
 function cl(){
  clearInterval(tid);
 }


