
window.onload = function()
{     
			
			var aComplete = new BComplete("artist",18);
			aComplete.loadData("artist_list.php");
			
			var bComplete = new BComplete("venue",18);
			bComplete.loadData("venue_list.php");
			
			
};


	
show_artist = function(){
			$('venue').style.display = 'none';
			$('venue').value = '';
			$('artist').style.display = 'inline';
			$('search_artist').style.display = 'inline';
			$('search_venue').style.display = 'none';
			$('artist_btn').src = 'images/artist_on.gif';
			$('venue_btn').src = 'images/venue_off.gif';
			$('artist').focus();
			return false;
}
	
show_venue = function(){
			$('artist').style.display = 'none';
			$('artist').value = '';
			$('venue').style.display = 'inline';
			$('search_artist').style.display = 'none';
			$('search_venue').style.display = 'inline';
			$('artist_btn').src = 'images/artist_off.gif';
			$('venue_btn').src = 'images/venue_on.gif';
			$('venue').focus();
			return false;
}

focus_artist = function(){
			$('artist').focus();
}

//addOnLoadEvent(focus_artist);
//addOnLoadEvent( function(){ alert('test') } );