// JScript source code

function callFlash(fileName,theWidth,theHeight) {
    var intWidth = theWidth;
    var intHeight = theHeight;
    if(intWidth==null){intWidth=700};
    if(intHeight==null){intHeight=350};
    document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
    document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" ');
    document.write(' ID="thb" WIDTH="'+intWidth+'" HEIGHT="'+intHeight+'" ALIGN="">');
    document.write(' <PARAM NAME="movie" VALUE="flash/' + fileName + '"/> <PARAM NAME="quality" VALUE="high"/>  <PARAM NAME="wmode" VALUE="transparent"/> ');
    document.write(' <EMBED src="flash/' + fileName + '" quality=high bgcolor=#001C61  ');
    document.write(' swLiveConnect="FALSE" WIDTH="'+intWidth+'" HEIGHT="'+intHeight+'" NAME="sale" ALIGN=""');
    document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" width="'+intWidth+'" height="'+intHeight+'">');
    document.write(' </EMBED>');
    document.write(' </OBJECT>'); 
}      