// greencuisine

// Get an element by ID
function getElem(whichLayer)
{
	// this is the way the standards work
	if( document.getElementById ) return document.getElementById( whichLayer );
	// this is the way old msie versions work
	else if(document.all) return document.all[whichLayer];
	// this is the way nn4 works
	else if(document.layers) return document.layers[whichLayer];
}
