/**
 * swfResizer
 *
 * swfResizer is a derivative of a Hoss Gifford product distributed under the Creative Commons license
 * http://creativecommons.org/licenses/by/2.5/scotland/
 *
 * adapted by Andrew Gargan for Rich Creative
 * 
 */
 
<!--
//
// pass the value of the flash element to alter and the height parameter to the resize function
//
function resizeSWF(flashElement, nHeight) {
	//alert("flashElement = " + flashElement + "\nheight = " + nHeight);
	nHeight += "px";
	document.getElementById(flashElement).style.height = nHeight;
}
//-->