//************************************************************************************
//** common.js - Common Presentation File for Jumper
//** This file contains the common presentation file modified by Steve Perry (c) 2008
//**
//** Jumper Software
//** Version 2.0
//**Copyright: Copyright 2008 Jumper Networks Incorporated
//**Copyright: All Rights Reserved
//**Copyright:
//**Copyright: Licensed under the GNU General Public License (Version 2) published
//**Copyright: by the Free Software Foundation; you may not use this file except in
//**Copyright: compliance with the License. Permission is granted for redistribution
//**Copyright: of this file provided this copyright notice is maintained intact. If
//**Copyright: you alter or modify the contents of this file in any way from its 
//**Copyright: original form please notify Jumper Networks Incorporated.
//**Copyright: 
//**Copyright: Jumper is a trademark of Jumper Networks Incorporated
//**Copyright: which may be registered in certain jurisdictions.
//**EndComments
//**
//**********************************************************************************

function ShowGlossaryItem(div, desc) {

	//var width = (width) ? width : 250;
	var width = '250px';
	var div = document.getElementById(div);
	var html = '<span>' + desc + '</span>';
	
	div.style.display = 'inline';
	div.style.position = 'absolute';
	div.style.width = width;
	div.style.backgroundColor = 'lightyellow';
	div.style.border = 'solid 1px black';
	div.style.padding = '3px 7px';
	div.style.color = '#000000';
	div.style.fontSize = '12px';
	div.style.fontWeight = 'normal';
	div.innerHTML = html;
}

function HideGlossaryItem(div) {
	var div = document.getElementById(div);
	div.style.display = 'none';
}

