// Crea el objecto xmlhttp function creaAjax() { var xmlhttp = false; try { // versión de JavaScript superior a la 5 xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { // objecto tradicional ActiveX if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else if(window.ActiveXObject) { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlhttp; } // Procesa un XMLHttpRequest // IdObj: debe ser o
// response: XML o Texto (html) // method: GET o POST // str: string de valores que se enviaron (var=valor&var2=valor2...) function processAjax(URL,IdObj,response,method,str,loading) { xmlhttp = creaAjax(); xmlhttp.open(method, URL); if (method == "POST") { // Añadimos un par etiqueta/valor al encabezado en el momento de enviarlo xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8"); } xmlhttp.onreadystatechange = function() { // readyState = estado actual del objecto, status = respuesta del servidor if (xmlhttp.readyState==1) { if (loading) { document.getElementById(IdObj).innerHTML = "
Cargando...
"; } } else if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { if (response == "XML") { document.getElementById(IdObj).innerHTML = xmlhttp.responseXML; } else { document.getElementById(IdObj).innerHTML = xmlhttp.responseText; } document.getElementById(IdObj).style.background = ""; } } if (method == "GET") { xmlhttp.send(null); } else { xmlhttp.send(str); } } function busca() { var str = document.getElementById('txtbusca').value.replace(" ","+"); if (!str) return false; else { if (document.getElementById('idvideo').value) window.location = '/sections/ficha_video_2.0.php?id_video='+document.getElementById('idvideo').value; else window.location = '/buscar/'+str; } return true; } function checkComentario() { if (!document.comentarios.nombre.value) { document.comentarios.nombre.style.backgroundColor = '#ffc4c4'; alert('Debe introducir su nombre'); document.comentarios.nombre.focus(); return false; } var filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z]{2,4})+$/; if (!filtro.test(document.comentarios.email.value)) { alert('El formato de su E-Mail es incorrecto.'); document.comentarios.email.style.backgroundColor = '#ffc4c4'; document.comentarios.email.focus(); return false; } if (!document.comentarios.comentario.value) { document.comentarios.comentario.style.backgroundColor = '#ffc4c4'; alert('Debe introducir su comentario'); document.comentarios.comentario.focus(); return false; } if (!document.comentarios.valoracion.value) { alert('Debes seleccionar la valoración del vídeo'); return false; } return true; } function abrir(URL) { window.open (URL,"_blank","status=1"); } var whosOn = ''; function doClick(obj) { // agenda menu = new Array("guias","fichas","foro","notas","normativa","desc"); for(i=0;i producirán fundido sobre el contenedor videos (videoteca) $('a').click(function() { if ($(this).attr('rel') == "fade") { $('#videos').animate({ height: 'hide', opacity: 'hide' }, 'fast', function() { $("#videos").animate({ height: 'show', opacity: 'show' }, 'fast'); }); } }); })