function writeTag(filename){

	here = document.location.href
	urlPath = here.substring(0,here.lastIndexOf("/")+1)

	htmlTag = '<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0" ID="game" width="100%" height="100%"><param name="src" value="'+filename+'"><param name="swRemote" value="swSaveEnabled=\'true\' swVolume=\'true\' swRestart=\'true\' swPausePlay=\'true\' swFastForward=\'true\' swContextMenu=\'true\' "><param name="swStretchStyle" value="stage"><param NAME="swURL" VALUE="'+urlPath+'"><PARAM NAME="bgColor" VALUE="#000000"><PARAM NAME="swStretchHAlign" VALUE="Center"><PARAM NAME="swStretchVAlign" VALUE="Top"><embed src="'+filename+'" bgColor="#000000" swStretchHAlign="Center" swStretchVAlign="Top"  width="100%" height="100%" swRemote="swSaveEnabled=\'true\' swVolume=\'true\' swRestart=\'true\' swPausePlay=\'true\' swFastForward=\'true\' swContextMenu=\'true\' " swStretchStyle="stage" type="application/x-director" pluginspage="http://www.macromedia.com/shockwave/download/" swURL="'+urlPath+'"></embed></object>';

	document.write(htmlTag);

}