function ventanaSecundaria (URL){
	window.open(URL,"ventana1","width=500, height=200, scrollbars=no, menubar=no, location=no, resizable=no")
}
function ventanaImprimir (URL){
	window.open(URL,"ventana1","width=500, height=600, scrollbars=yes, menubar=no, location=no, resizable=no")
}
function ventanaEvento (URL){
	window.open(URL,"ventana1","width=500, height=300, scrollbars=yes, menubar=no, location=no, resizable=no")
}
function imprimir() {
	window.print();
}
function agregarFavorito(){
	//Para internet explorer
	if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
		var url="http://www.pptoledo.com/"; //Cambia esta dirección por la de tu web
		var titulo="Partido Popular de Toledo"; //Cambia esta nombre por el de tu web
		window.external.AddFavorite(url,titulo);
	}
	//Para Netscape y Firefox
	else {
		if(navigator.appName == "Netscape")
			alert ("Presione Crtl+D para agregar a este sitio en sus Bookmarks");  //Puedes personalizar este mensaje
	}
}