function writeObj(SwfName, Sw1, SwfWidth, SwfHight) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + SwfWidth + '" height="' + SwfHight + '">');
	document.write('<param name="movie" value="' + SwfName + '.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="flashvars" value="sw1=' + Sw1 + '">');
	document.write('<param name="bgcolor" value="#FFFFFF">');
	document.write('<embed src="' + SwfName + '.swf" quality="high" bgcolor="#FFFFFF" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + SwfWidth + '" height="' + SwfHight + '" flashvars="sw1=' + Sw1 + '"></embed>');
	document.write('</object>');
}

function writeDcr(DcrName, Sw1, DcrWidth, DcrHight) {
	document.write('<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,0,0" width="' + DcrWidth + '" height="' + DcrHight + '">');
	document.write('<param name="src" value="' + DcrName + '.dcr">');
	document.write('<param name="swRemote" value="swSaveEnabled=false swVolume=true swRestart=false swPausePlay=false swFastForward=false swcontextmenu=1">');
	document.write('<param name="swStretchStyle" value="none">');
	document.write('<param name="bgColor" value="#FFFFFF">');
	document.write('<param name="sw1" value="' + Sw1 + '">');
	document.write('<embed src="' + DcrName + '.dcr" bgcolor="#FFFFFF" width="' + DcrWidth + '" height="' + DcrHight + '" swremote="swSaveEnabled=false swVolume=true swRestart=false swPausePlay=false swFastForward=false swcontextmenu=1" swstretchstyle="none" type="application/x-director" pluginspage="http://www.macromedia.com/shockwave/download/" sw1="' + Sw1 + '"></embed>');
	document.write('</object>');
}
