var flashMinSize = function(minWidth, minHeight, flashId) {
	var _self = this;
	this.isIE = (document.all && window.print && /MSIE [567]/.test(navigator.userAgent)) || (document.compatMode && document.compatMode=="BackCompat");
	document.documentElement.style.overflow = 'auto';
	if (_self.isIE) {
		setInterval(function() {
			if (document.body) {
				document.body.style.height = document.documentElement.clientHeight>minHeight ? '' : minHeight + 'px';
				document.body.style.width = document.documentElement.clientWidth>minWidth ? '' : minWidth + 'px';
			}
		},50);
	} else {
		var style = document.getElementsByTagName('head')[0].appendChild(document.createElement('style'));
		style.type = 'text/css'; style.media = 'screen';
		style.id = "flashMinStyle";
		var txt = document.createTextNode(['#',flashId,'{min-height:',minHeight,'px; min-width:',minWidth,'px;}'].join(''));
		style.appendChild(txt);
	}
}