function draw_flash ( fd_index ) {
var flash_data = new Array();
var scripts = document.getElementsByTagName('script');
var index = scripts.length - 1;
var myScript = scripts[index];
var p = 0;
if (myScript.src.match(/\?(\d+)/)) {
p = myScript.src.replace(/^.*\?(\d+).*$/, '$1');
}
flash_data['main'] = new Array();
flash_data['main']['msie'] = '';
flash_data['main']['noie'] = '';
if ( typeof(flash_data[fd_index]) != 'undefined' ) {
if ( document.all && !window.opera ) document.writeln(flash_data[fd_index]['msie']);
else document.writeln(flash_data[fd_index]['noie']);
} else {
document.writeln('');
}
}
draw_flash('main');