/* Greetings, Earthling!! */




/* Global Popup Code */

function isUndefined(v) {
var undef;
return v===undef;
}

var _POPUP_FEATURES = 'location=0, statusbar=0, menubar=0,scrollbars=0,width=400, height=300';

function raw_popup(url, target, features) {
if (isUndefined(features)) {
features = _POPUP_FEATURES;
}
if (isUndefined(target)) {
target = '_blank';
}
var theWindow = window.open(url, target, features);
theWindow.focus();
return theWindow;
}

function link_popup(src, features){
return raw_popup(src.getAttribute('href'), src.getAttribute('target') ||'_blank', features);
}

/* Check Local Listings */

function openLocalBroadcast() {
var n=open('../../local_broadcast.html','local','toolbar=no,directories=no,status=yes,menubar=no,scrolling=yes,scrollbars=yes,resizable=yes,width=525,height=250,top=100,left=100');
}

function openLocalBroadcast_v2(src) {
var features ='toolbar=no,directories=no,status=yes,menubar=no,scrolling=yes,scrollbars=yes,resizable=no,width=620,height=453,top=100,left=100';
link_popup(src,features);
}

function openVideo(src) {
var features ='toolbar=no,directories=no,status=no,menubar=no,scrolling=no,scrollbars=no,resizable=no,width=383,height=410,top=100,left=100';
link_popup(src,features);
}

function openVideo08(src) {
var features ='toolbar=no,directories=no,status=no,menubar=no,scrolling=no,scrollbars=no,resizable=no,width=580,height=390,top=100,left=100';
link_popup(src,features);
}
