// JavaScript Document

<!--
function mmLoadMenus() {
	if (window.menu_about) return;
	window.menu_about = new Menu("root",100,20,"",12,"#FFFFFF","#FFFFFF","#000000","#0099FF","left","middle",5,1,1000,-5,7,true,false,true,0,false,false);
	menu_about.addMenuItem("Overview","location='about.cfm'");
	menu_about.addMenuItem("Media&nbsp;Kit","location='mediakit.cfm'");
	menu_about.addMenuItem("Press&nbsp;Releases","location='pressreleases.cfm'");
	menu_about.addMenuItem("Advertising","location='advertising.cfm'");
	menu_about.hideOnMouseOut=true;
	menu_about.bgColor='#555555';
	menu_about.menuBorder=1;
	menu_about.menuLiteBgColor='#FFFFFF';
	menu_about.menuBorderBgColor='#777777';
	menu_about.fontWeight='Bold';
	menu_about.fontSize=11;
	
	menu_about.writeMenus();
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_jumpMenuGo(selName,targ,restore){ //v3.0
  var selObj = MM_findObj(selName); if (selObj) MM_jumpMenu(targ,selObj,restore);
}

// the following function is used to show/hide divs eg. in forms
function toggle(obj) {
	var val=obj.value;
	if (!obj.m) { 
		obj.m=''; 
	}
	if (!obj.m.match(val)) { 
		obj.m+=','+val+','; 
	}
	var hide=obj.m.split(',');
	for (var zxc0=0;zxc0<hide.length;zxc0++) {
		if (document.getElementById(hide[zxc0])) {
			document.getElementById(hide[zxc0]).style.display='none';
		}
	}
	var show=val.split(',');
	for (var zxc1=0;zxc1<show.length;zxc1++) {
		if (document.getElementById(show[zxc1])) {
			document.getElementById(show[zxc1]).style.display='';
		}
	}
}
//-->