//=========================================================================
//=== BEGIN: GET LAYER													===
//=== ----------------------------------------------------------------- ===
//=== REQUIRES: detectBrowser()											===
//=== ----------------------------------------------------------------- ===
//=== getLayer(layerId)													===
//===																	===
//=== finds and returns a layer object using the parsed layer id		===
//=========================================================================
    function getLayer(layerID)
    {
    	if ((currentBrowser == "NS4")||(currentBrowser == "NS6"))
    	{
    		if (currentBrowser == "NS6")
    		{layerObj = document.getElementById(layerID) ;}
    		else
    		{layerObj = document.layers[layerID] ;}
    	}
    	else if ((currentBrowser == "IE")||(currentBrowser == "FireFox"))
    	{layerObj = document.getElementById(layerID) ;}
    	
    	return layerObj ;
    }
//=========================================================================
//=== END: GET LAYER													===
//=========================================================================