$(document).ready(presionEnlace);

function presionEnlace()
{	
	abrirVentanaRadio();	
}

function abrirVentanaRadio()
{
	$("a.radio", this).click(function() {
		window.open(this.href, "Radio", "height=500, width=320, location=no, menubar=no, resizable=yes, status=yes, toolbar=no");
		return false;	
	});
}
