$(document).ready(function(){
	$('#flash').html('<iframe src="flash.html" frameborder="0" id="flashframe"></iframe>');
	$('#flashframe').css('height',parseInt($(window).height())-46);
});

$(window).resize(function(){
	$('#flashframe').css('height',parseInt($(window).height())-46);
});

