	function mOvr(src,clrOver) {
		//if (!src.contains(event.fromElement)) {
			src.style.cursor = 'hand';
			src.style.backgroundColor  = clrOver;
		//}
	}
	
	function mOut(src,clrIn) {
		//if (!src.contains(event.toElement)) {
			src.style.cursor = 'default';
			src.style.backgroundColor  = clrIn;
		//}
	}
	
	function mClk(src) {
		if(event.srcElement.tagName=='TD'){
			src.children.tags('A')[0].click();
		}
	}
function detailsShowHide(divID)
{     
   var strShow
       strShow = divID+"Show";
   var strHide
       strHide = divID+"Hide";
   var mode;   
   var strMode
   //strMode = document.all[divID].style.display;
   strMode = document.getElementById(divID).style.display;
   if (strMode == "none")
   	{
		mode = "block";
	}
   else
    {
		mode = "none";
	}
   document.getElementById(divID).style.display = mode;   
    
   //document.all[divID].style.display = mode;
   //document.all[strShow].style.display = "none";
   //document.all[strHide].style.display = "block";
}

function selCountry(destino){
	leaving = false;
	if(destino == 'soloextended')
		document.tarifas.submit();
	else
		if(destino == 'soloflat')
			document.tarifas_soloflat.submit();
}


function show_information(ubicacion, site){
    window.open(ubicacion, site, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=200,left=200,width=550,height=350");
}