<!--
function openmap(width, height, url) {
 document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"\n');
 document.write('codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0"\n');
 document.write('id="editmap" width="' + width + '" height="' + height + '">\n');
 document.write('<param name="movie" value="' + url + '">\n');
 document.write('<param name="type" value="application/x-shockwave-flash">\n');
 document.write('<param name="quality" value="high">\n');
 document.write('<param name="play" value="true">\n');
 document.write('<param name="menu" value="false">\n');
 document.write('<param name="allowScriptAccess" value="always">\n');
 document.write('<embed src="' + url + '"');
 document.write(' type="application/x-shockwave-flash"');
 document.write(' quality="high" menu="false" play="true"');
 document.write(' width="' + width + '" height="' + height + '"');
 document.write(' allowScriptAccess="always" swLiveConnect="true" name="editmap"');
 document.write(' pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
 document.write('</embed>\n');
 document.write('</object>\n');
}

//-->
