function followLinkInOpener(dest,closeThis) {
	window.opener.location=dest;
	if(closeThis) window.close();
	return false;
}

function openNewWin(dest,width,height) {
	window.open(dest,'newWin','width=' + width + ',height=' + height + ',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
	return false;
}


function popup(mylink, width, height) {
    if (!window.focus) return true;
    var href;
    if (typeof (mylink) == 'string')
        href = mylink;
    else
        href = mylink.href;
    window.open(href, 'mediaQuote', 'width=' + width + ',height=' + height + ',location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,modal=yes,alwaysRaised=yes');
    return false;
}


jQuery(document).ready(function() {
    jQuery('a.audio_player').click(function() {
        return popup(this, '640', '195');
    });

    jQuery('a.video_player').click(function() {
        return popup(this, '640', '540');
    });
});



