// ExternalInterface scripts to resize window

function resizeBrowserHeight(stageHeight){
	//alert(stageHeight);
	//document.getElementById('flashcontent').style.height = stageHeight+'px';
	$("#flashcontent").height(stageHeight);
	$("#flashcontent").css('height', stageHeight+'px');
	$("#main").height(stageHeight);
	$("#main").css('height', stageHeight+'px');

}
