function getID(id) 
{
	if (document.getElementById(id)) 
	{
    	return document.getElementById(id);
    } else 
    {
    	return getID;
   	}
}