/*function switchLayer(indiceopcion,totalopciones) {
   
   for(i=0; i<totalopciones;i++){
      document.getElementById('opcion'+i).className='notselected';
	  document.getElementById('menuverde'+i).style.display='none';
   }
   document.getElementById('opcion'+indiceopcion).className='selected';
   document.getElementById('menuverde'+indiceopcion).style.display='block';
}
*/

/*function changebelowchat(){
document.getElementById("chatinferior").style.background="url(/webimages/botones/banners/cenote_playadelcarmen_2.jpg) no-repeat";
}
function changebelowchat2(){
document.getElementById("chatinferior").style.background="url(/webimages/botones/banners/cenote_playadelcarmen_1.jpg) no-repeat";
}*/
function validanews(theform)
{
 if (theform.news_name.value=="") {
	 alert('NAME is required');
	 return false;
 }
  if (theform.news_email.value=="") {
	 alert('EMAIL is required'); 
	 return false;
 }
 
return true; 
}

