function FlashResizer_setSize( id, w, h ) {

	var obj = document.getElementById( id );
	if ( obj != null ) {
		obj.style.width = w + 'px';
		obj.style.height = h + 'px';
	} // End if.

	// Call the onSetSize event.
	FlashResizer_onSetSize( id, w, h );

} // End FlashResizer_setSize().

// Override this function within a document.
function FlashResizer_onSetSize( id, w, h ) { }