
var lastHeight = 0;


//adjusts the size of the horiz scroller
function resizeSWF(nHeight) {
	
	//swffit.configure({target: "flashcontent", minHei: nHeight, minWid: 960});
	
	if(nHeight>1 && nHeight!=lastHeight) {
		
	//	alert();
	//ExternalInterface.call("swffit.configure", {target: "flashcontent", minHei: __dynamicHeight});
		//swffit.fit('flashcontent',960, nHeight);
		swffit.configure({target: "flashcontent", minHei:nHeight, minWid:960});
		swffit.startFit();
		lastHeight = nHeight;
	}
	
}

