function wGetElementById(e) 
{
	if(typeof(e)!='string') return null;
  	if(document.getElementById) e=document.getElementById(e);
  	else if(document.all) e=document.all[e];
  	else if(document.layers) e=xLayer(e);
  	else e=null;
  	return e;
}


