function resize() {
var r = document.getElementById( 'resizeable' );	//get Item that is to be resized
var tableHeight = browserHeight();	//subtracts 50 for the scrollbar to get a table that is just smaller then the browser window 
var tableWidth = browserWidth();		//subtracts 50 for the scrollbar to get a table that is just smaller then the browser window 
flashWidth = checkWidth(720);
flashHeight = checkHeight(480);
r.style.height = tableHeight + 'px';
r.style.width = tableWidth + 'px';


//document. getElementById( 'embed'). style. width= flashWidth + 'px';
//document. getElementById( 'embed'). style. height= flashHeight + 'px';
}