function showWithDelay(id, delayTime) 
{     
    codeSnippet = "showControl(\""+id+"\");";
    setTimeout(codeSnippet, delayTime);
} 

function showControl(id)
{
    if(document.getElementById(id))
        document.getElementById(id).style.visibility = 'visible';
}
