function showMenu(objID,yVal) {

//This function receives the object ID and y-coordinate value (in pixels)
//from the event handler and then uses those values to dynamically
//position the object in the browser window

	if (document.all) {
	
	//This checks to see if the user is using Internet Explorer
	//because only IE uses "document.all"

		objName = eval('document.all.' + objID + '.style');
		
		//This statement creates the object reference for IE from
		//object ID sent to the script

		objName.pixelTop = yVal;

		//This sets the y-coordinates of the top of the object
		//for users browsing with Internet Explorer

	} else {

	//If user is not using Internet Explorer do what follows
	
		//objName = eval('document.getElementById(\\'' + objID + '\\'');
		//objName = eval('document.getElementById(\\''+objID+'\\')');
		//Create the object reference for Netscape using
		//the object ID sent to the script

		objName.pixelTop = yVal;

		//Set the y-coordinate for the top of the object
		//for users browsing with Netscape
	}
}