function setSWFDimensions (objID,width,height) {

		//alert( "objID="+objID+" | w="+width+" | h="+height );
		
		if (objID && width && height) {

			var fObj =  _proxy_jslib_handle(document, 'getElementById', '', 1, 0)(objID);
			var fEmb =  _proxy_jslib_handle(document, 'getElementById', '', 1, 0)(objID+'-embed');

			if (fObj && fObj.style) {
				 _proxy_jslib_handle(fObj, 'setAttribute', '', 1, 0)('width',width);
				 _proxy_jslib_handle(fObj, 'setAttribute', '', 1, 0)('height',height);
				fObj.style.width = width+'px';
				fObj.style.height = height+'px';
			}

			if (fEmb != null) {
				fEmb.width = width;
				fEmb.height = height;

				if (fEmb.style) {
					fEmb.style.width = width+'px';
					fEmb.style.height = height+'px';
				}
			}
		}
	}
 ;
_proxy_jslib_flush_write_buffers() ;