function gotoEnglish() { //v3.0
	if(location.href.indexOf('_SP')>0){
   		window.location=(location.href.substring(0, location.href.indexOf('_SP'))+'.html');
   }  
}
function gotoSpanish() { //v3.0
   if(location.href.indexOf('.html')==-1){
   		window.location=location.href+'index_SP.html';
   }
   else{
     if(location.href.indexOf('_SP')==-1){
	  		window.location=(location.href.substring(0, location.href.indexOf('.html'))+'_SP.html');
   	   } 
   }
}
function setFlashSize(newH){
	//alert(divid.id);
	if(document.getElementById('mainmenuIndex') != undefined){
		document.getElementById('mainmenuIndex').style.height = newH+"px"; 		
	}else if(document.getElementById('mainmenuGeneric') != undefined){
		document.getElementById('mainmenuGeneric').style.height = newH+"px"; 		
	}
}