document.myLocation = 'barcelona'; 
document.mySection = 'scooter_rental';   



function step2()
{                   
	                          
	locationSelect = document.getElementById('locationSelect');
	// locationSelect.disabled=1; 
	val =  locationSelect.options[locationSelect.selectedIndex].value; 
	
	 // if we are madrid.. let's hide the tours button:
	 if(val == 'madrid' || val == 'seville')
	 {
	 	$('toursbutton').hide();
	 }
	 else
	 {
	 	$('toursbutton').show();
	 }
	
	if(val != 0)
	{
		document.myLocation =  val;
		box = document.getElementById('two');
		box.className='twotwo';          
		box3 = document.getElementById('three');
		box3.className='threetwo';       
	 }                                 
	                                                
}                             

function step3(section,language)
{
	//
	box4 = document.getElementById('drive');
	box4.className='threethree';
	
	document.mySection = section;
                                                        
	window.setTimeout('enterSite("'+language+'")', 4000);
}                                                 
                                 

function enterSite(language)
{        
	if(document.myLocation == 'madrid'||document.myLocation == 'seville')
		language = 'es';
	base = "/index.php?"
	base = '';
	url = "/"+language+"/"+document.myLocation+"/"+document.mySection;
	 
	
   	window.location.href = url;
}

