<!--
function foto(url, titulo){
  cad1= "foto.php?Foto=" + url + "&lugar=" + titulo;
  window.open(cad1,'none','width=450, height=360');
}
function ventana(x,y, pag){
	cad1="width=" + x + ",height=" + y + ",scrollbars=yes"; 
	window.open(pag,'none',cad1);
}

function favoritos(url, titulo){
	window.external.addFavorite(url, titulo);
}

function paginadeinicio(src, url){
	src.style.behavior='url(#default#homepage)';
	src.setHomePage(url);
}

function verify(radioObj){
	//document.forms['radioExampleForm'].elements['number']
	if(!radioObj)
		return "";
	var radioLength = radioObj.length;
	if(radioLength == undefined)
		if(radioObj.checked)
			return true;
		else{
			alert('seleccione una opcion');
			return false;
		}
	for(var i = 0; i < radioLength; i++) {
		if(radioObj[i].checked) {
			return true;			
		}
	}
	alert('seleccione una opcion');
	return false;
}
function ver_acepto(checkboxObj){	
	if (checkboxObj.checked == false){
		alert('Debe leer y aceptar los términos');
		return false;
	}else return true;
}
-->