// JavaScript Document

var ventana;

function audio(v) {
if(v==0) {
url = 'radio.php'; }
else if(v==1) {
url = '../radio.php'; }
else { url = '../../radio.php'; }
ventana = window.open(url,'musica','height=250,width=180,resizable');
ventana.blur();
}

function ver(url,wid,heig) {
dat = 'width='+wid+',height='+heig+',resizable,top=0,left=0';
window.open(url,'gal',dat);
}

function contactar(v) {
	dir = 'contacto.php';
	if(v==0) {
		url = dir;
	}
	else if(v==1) {
		url = '../'+dir;
	}
	else {
		url = '../../'+dir;
	}
	window.open(url, 'contacto', 'width=300,height=400,left=220,top=0,screenX=0,screenY=0');
}

function cerrar() {
if(window.name=='gal') {
self.close(); 
return false; 
}
}