var movieName = "finder";

function thisMovie(movieName) {
  if (navigator.appName.indexOf ("Microsoft") !=-1) {
    return window[movieName]
  }	else {
    return document[movieName]
  }
}

function swfOn(){
	reSize("theMainMenu", 960, 135);	
}

function swfOff() {
	reSize("theMainMenu", 960, 50);
}


function reSize(divId, newWidth, newHeight)
{
	
	var myid = document.getElementById(divId);

	myid.style.width = newWidth + 'px';
	myid.style.height = newHeight + 'px';
	
//	alert(myid + " : " + myid.zIndex + " : " + myid.style.height);

}