function show_base(doc,x,y) {
	var bName = navigator.appName;
	if (bName == "Netscape") {
		x -= 12;
	}
	var popupWin = window.open(doc, 'popup',
		'status=no,personalbar=no,locationbar=no,menubar=yes,'
	+	'toolbar=no,resizable=yes,scrollbars=yes,'
	+	'outerWidth=' + x + ',outerHeight=' + y);
	popupWin.resizeTo(x,y);
	popupWin.focus();
	return popupWin;
}
function show(doc,x,y) {
	show_base(doc,x,y);
}
function link(name) {
	if (name == 'services') {
		return show("http://broadcastgroup.com/services.shtml",430,400);
	}
	if (name == 'capabilities') {
		return show("http://broadcastgroup.com/capabilities.shtml",330,450);
	}
	if (name == 'contact') {
		return show("http://broadcastgroup.com/contact.shtml",330,400);
	}
	if (name == 'signup') {
		return show("http://broadcastgroup.com/signup-loading.shtml",608,450);
	}
	if (name == 'pricing') {
		return show("http://broadcastgroup.com/pricing.shtml",500,420);
	}
	if (name == 'goodies') {
		return show("http://broadcastgroup.com/goodies.shtml",608,450);
	}
	return show('http://broadcastgroup.com/uc.shtml',400,300);
}


