// JavaScript Para la apertura y gestión de Ventanas

function abre_ventana(rutaFichero) {
	
	if(rutaFichero.indexOf("Marcas")!=-1)
	{
		var ventana = window.open(rutaFichero,'','height=600, width=795, Scrollbars=yes');
	}
	else{
		var ventana = window.open(rutaFichero,'','height=500, width=775');
	}
}
