function openLocalBroadcast_v2() {
var n=open('../../local_broadcast_v2.html','local','toolbar=no,directories=no,status=yes,menubar=no,scrolling=yes,scrollbars=yes,resizable=no,width=620,height=453,top=100,left=100');
}

function popUp(page,w,h) {
params="width="+w+",height="+h+" ,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top=0";
OpenWin = this.open(page, "popupwindow", params);
}

/* 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);
}
