// JavaScript Document

function expandcontent(cid){
	document.getElementById(cid).style.display=(document.getElementById(cid).style.display!="none")? "none" : ""
}

function onloadFunc(){
	//expandcontent('menu1');
	//expandcontent('menu2');
}

function quickFormOpen(form){
    var newIndex = form.quickSearch.selectedIndex; 

	if ( newIndex == 0 ) { 

		//alert( "Please select a location!" ); 

	} else { 

		cururl = form.quickSearch.options[ newIndex ].value; 
		window.location.assign( cururl ); 

	} 
}

function quickKatOpen(form){
    var newIndex = form.quickKat.selectedIndex; 

	if ( newIndex == 0 ) { 

		//alert( "Please select a location!" ); 

	} else { 

		cururl = form.quickKat.options[ newIndex ].value; 
		window.location.assign( cururl ); 

	} 
}
