
//
// pass the value of the flash element to alter and the height parameter to the resize function
//
function resizeSWF(flashElement, nHeight) {	
	if(document.all && !document.getElementById) {
 		document.all[flashElement].style.pixelHeight = nHeight;
	}else{
		document.getElementById(flashElement).style.height = nHeight + "px";
	}
	document.body.scrollTop = 0;
}


//-->
