function flashSize(w,h)
{
	document.getElementById("flashContent").style.width = w+"px";
	document.getElementById("flashContent").style.height = h+35+"px";
}

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

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