function showObject(id)
{
	document.getElementById(id).style.display = 'block';
}

function bar(url)
{
    wasOpen  = false;
    win = window.open(url);    
    return (typeof(win)=='object')?true:false;
}