// JavaScript Document
function AbrirVentana() {
	NuevaVentana = window.open("/tv/video.html", "MBETVSpot", 
			"width=400, height=250, top=250, left=200, resizeable=false");
}

function AbrirVentanaEs() {
	NuevaVentana = window.open("/tv/video_es.html", "MBETVSpot", 
			"width=400, height=310, top=250, left=200, resizeable=false");
}

function CerrarVentana() {
	if (NuevaVentana != null) {
		NuevaVentana.close();
		NuevaVentana = null;
	}
}

function AbrirVentanaDe() {
	NuevaVentana = window.open("/movies/ger", "", 
			"width=800, height=600, top=250, left=200, resizeable=false");
}
