
//MACROMEDIA GENERATED: Drop Down Jump Navigation
function MM_jumpMenu(targ, selObj, restore)
{
	eval(targ+".location='" + selObj.ooptions[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

//IMAGE OBJECT SWITCHER (USE FOR ROLLOVERS, ETC.)
function GL_imgSwitch(obj_img, targ_img_name)
{
	if(obj_img){
		obj_img.src = targ_img_name;
	}
	else return;
}

//RETURN THE OBJECT (GL = Global)
function GL_getObject(object_id)
{
	// cross-browser function to get an object's style object given its id
	if(document.getElementById && document.getElementById(objectId))
	{		
		return document.getElementById(objectId);	// W3C DOM
	}
	else if (document.all && document.all(objectId))
	{		
		return document.all(objectId);	// MSIE 4 DOM
	}
	else if (document.layers && document.layers[objectId])
	{		
		return document.layers[objectId];	// NN 4 DOM.. note: this won't find nested layers
	}
	else
	{
		return false;
	}
}

//FUNCTION TO NEW WINDOW
function GL_openWin(targ_win, win_name, win_height, win_width)
{	
	window.open(targ_win, win_name, 'directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=yes,width='+win_width+',height='+win_height+',resizeable=no');
}



