function setFlashWidth(divid, newW){
	document.getElementById(divid).style.width = newW+"px";
}
function setFlashHeight(divid, newH){
	document.getElementById(divid).style.height = newH+"px";		
}
function setFlashSize(divid, newW, newH){
	setFlashWidth(divid, newW);
	setFlashHeight(divid, newH);
}
function canResizeFlash(){
	var ua = navigator.userAgent.toLowerCase();
	var opera = ua.indexOf("opera");
	if( document.getElementById ){
		if(opera == -1) return true;
		else if(parseInt(ua.substr(opera+6, 1)) >= 7) return true;
	}
	return false;
}

var bBrowserResize = canResizeFlash();

document.title = "i d w e t";

document.write('<div align="center">');
if (bBrowserResize){
	document.write('<div id="flashHolder" style="height:599px;">');
} else {
	document.write('<div id="flashHolder" style="height:1500px;">');
}
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="100%" id="index" align="top">');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value="index.swf?bBrowserResize='+bBrowserResize+'" />');
document.write('<param name="menu" value="false" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="bgcolor" value="#000000" />');
document.write('<param name="salign" value="t" />');
document.write('<embed src="index.swf?bBrowserResize='+bBrowserResize+'" quality="high" salign="t" bgcolor="#000000" width="100%" height="100%" name="index" align="top" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');
document.write('</div>');
document.write('</div>');
