var targetDCR = "";

function writeDCR(dcr_name, w, h){
document.write('<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" id="sw_game" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,0,0,0" width=' + w + ' height=' + h + ' onFocus="targetDCR=this" onBlur="setTimeout(\'setFocus()\', 500)">');
document.write('<param name=src value="' + dcr_name + '">');
document.write("<param name=swRemote value=\"swSaveEnabled='true' swVolume='true' swRestart='true' swPausePlay='true' swFastForward='true' swcontextmenu='1' \">");
document.write('<param name=swStretchStyle value=none>');
document.write('<PARAM NAME=bgColor VALUE=#FFFFFF>');
document.write('<PARAM NAME=progress VALUE=FALSE>');
document.write("<embed src=\"" + dcr_name + "\" bgColor=#FFFFFF progress=FALSE  width=" + w + " height=" + h + " swRemote=\"swSaveEnabled='true' swVolume='true' swRestart='true' swPausePlay='true' swFastForward='true' swcontextmenu='1' \" swStretchStyle=none type=\"application/x-director\" pluginspage=\"http://www.macromedia.com/shockwave/download/\"></embed></object>");
}

function setFocus(){
	if(targetDCR != ""){
		targetDCR.focus();
	}
}