/**
 * resizeSWFTransition v1: copyright 2007 Matt Davidson - Smooth Dynamic Flash Resizing.
 *
 * resizeSWFTransition is a simple script to resize flash movies using the script.aculo.us library
 * 
 *
 * 
 *   
 */
function resizeSWF(sentHeight) {
	thatHeight = document.getElementById("resizer").style.height //gets the current height of the flash window
	nHeight = parseInt(thatHeight.replace("px","")) //removes the "px" at the end 
	nPercent = sentHeight / nHeight * 100 //figures out the percent change that is going to happen
	new Effect.Scale( "resizer", nPercent , {scaleX:false, scaleContent:false, duration:.5}); //transition object created and executed
}

function setThis(){
document.getElementById("resizer").style.height = "444" //sets the initial value for the flash height style.

}