<!--
function videos(url,ventana) {
var miPopup;
w = 277;
h = 224;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2) - 20;
miPopup = window.open(url, ventana, 'height='+h+',width='+w+',scrollbars=0,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
miPopup.focus();
}

function videos320(url,ventana) {
var miPopup;
w = 400;
h = 300;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2) - 20;
miPopup = window.open(url, ventana, 'height='+h+',width='+w+',scrollbars=0,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
miPopup.focus();
}

function locations(url,ventana) {
var miPopup;
w = 512;
h = 190;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2) - 20;
miPopup = window.open(url, ventana, 'height='+h+',width='+w+',scrollbars=0,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
miPopup.focus();
}

function contact(url,ventana) {
var miPopup;
w = 240;
h = 240;
x4 = screen.width/2 - (w/2);
y4 = screen.height/2 - (h/2) - 20;
miPopup = window.open(url, ventana, 'height='+h+',width='+w+',scrollbars=0,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
miPopup.focus();
}



/* Mostrar Capas ----------------------------------------------- */

function mostrar(nombreCapa) {
	var capadirectors = document.getElementById('directors');
	var capaawards = document.getElementById('awards');
	var estilo_capadirectors = capadirectors.style;
	var estilo_capaawards = capaawards.style;

	if (nombreCapa == "awards") {
		estilo_capadirectors.display = 'none';
		estilo_capaawards.display = '';
	} else {
		estilo_capadirectors.display = '';
		estilo_capaawards.display = 'none';
	}
}


/* More Spots ----------------------------------------------- */

function mostrarboton(Capa) {
	document.getElementById(Capa).style.display = 'none';
}

function ocultarboton(Capa) {
	document.getElementById(Capa).style.display = '';
}



function mOvr(src,clrOver) {
if (!src.contains(event.fromElement)) {
src.style.cursor = 'hand';
src.bgColor = clrOver;
}
}
function mOut(src,clrIn) {
if (!src.contains(event.toElement)) {
src.style.cursor = 'default';
src.bgColor = clrIn;
}
}
function mClk(src) {
if(event.srcElement.tagName=='TD'){
src.children.tags('A')[0].click();
}
}
// -->