function objecthider(roottag, checktag){
    if (document.getElementById(roottag).getElementsByTagName(checktag).length != 0) {
        document.getElementById(roottag).style.display = 'block';
    }
}

function gotosite(site) {            
	if (site != "") {                    
		top.location=site; 
	}
}