// JavaScript Document
function returnObjById(id) 
{ 
    if (document.getElementById) 
        var returnVar = document.getElementById(id); 
    else if (document.all) 
        var returnVar = document.all[id]; 
    else if (document.layers) 
        var returnVar = document.layers[id]; 
    return returnVar; 
}
//If the browser supports script then show this DIV
function showDiv(divid)
{
	var myDiv = returnObjById(divid);
	if (myDiv != null)
		myDiv.className = "ShowDiv";
}
function bootUp() 
{
	showDiv("flashHomepage");
	showDiv("flashLogo");
	showDiv("flashMenu");
	
}
