//Nuevas ventanas:
var nueva_ventana

function abrir_ventana(nombre, alto, ancho, lugar)
{
	var dimensiones_ventana="height="+alto+",width="+ancho
	if (lugar=="index")
	{
		nueva_ventana=window.open("paginas/"+nombre+".htm", nombre, dimensiones_ventana)		
	
	}
	else if (lugar=="paginas")
	{
		nueva_ventana=window.open(nombre+".htm", nombre, dimensiones_ventana)			
	}
}
function abrirVentana(url,nombre,opciones)
{
	return window.open(url,nombre,opciones);
}
