function menu (name,sSWF,wSWF,top,left) {

	// browser check
	if (!document.body || !document.body.style)
		return;

	document.write ('<div style="position: relative;top:'+top+'px;left:'+left+'px;background-color:transparent;">');
        document.write ('<div style="position:absolute;top:0px;left:0px;width:100px;height:20px;z-index:0;background-color:transparent;">');
        document.write ('<object id="Sflash" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+sSWF+'" height="'+wSWF+'">');
        document.write ('<param name="movie" value="'+ name +'.swf">');
        document.write ('<param name="quality" value="high">');
        document.write ('<param name="scale" value="noscale">');
        document.write ('<param name="wmode" value="transparent">');
        document.write ('<param name="bgcolor" value="#EEEEEE">');
        document.write ('<embed name="Sflash" src="'+ name +'.swf" quality="high" bgcolor="#EEEEEE" scale="noscale" wmode="transparent" width="'+sSWF+'" height="'+wSWF+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>');
        document.write ('</object>');
        document.write ('</div>');
        document.write ('</div>');
}
