//
var MIN_WIDTH = 950;
var MIN_HEIGHT = 720;

function openScrollingWindow(src,name,width,height) {
	var bboxWin=window.open(src,name,"width="+width+",height="+height+",resizable=1,scrollbars=1");
	if(bboxWin.focus){ bboxWin.focus(); }
}
function resizeFlash(){
	width = $(window).width() > MIN_WIDTH ? $(window).width() : MIN_WIDTH;
	height = $(window).height() > MIN_HEIGHT ? $(window).height() : MIN_HEIGHT;
	$('#'+attributes.id).height(height);
	$('#'+attributes.id).width(width);
}
$(window).resize(function(){
	// call twice to make sure the scrollbars disapper
	resizeFlash();
	resizeFlash();
});		