// JavaScript Document

function abrirventana(pagina,ancho,alto,scrolltipe){
	window.open(pagina,"","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scrolltipe + ",resizable=1,width=" + ancho + ",height=" + alto + ",top=85,left=140");
}

// Programacion
function programacion(imgA,imgB){
	$("#programa_txt").fadeOut("slow", function(){
		$("#programa_txt").text("DESPUES...");
		$("#programa_txt").fadeIn("slow");													 

		$("#programa_img").delay(1000).slideUp("slow",function(){
			$("#programa_img").html("<img src='imagenes/" + imgB + "' width='230' height='100' />");
			$("#programa_img").slideDown("slow");

			$("#programa_txt").delay(5000).fadeOut("slow", function(){
				$("#programa_txt").text("ESTAS ESCUCHANDO");
				$("#programa_txt").fadeIn("slow");													 

				$("#programa_img").delay(2000).slideUp("slow",function(){
					$("#programa_img").html("<img src='imagenes/" + imgA + "' width='230' height='100' />");
					$("#programa_img").slideDown("slow");
				});
			});
		});
	});
	
	setTimeout("programacion('" + imgA + "','" + imgB + "')",25000);
}


// validate the comment form when it is submitted
/*
$(document).ready(function(){
});
*/
