<!--

//
// Copyright Notice
//
//    This program is free software; you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation; either version 2, or (at your option)
//    any later version.
//
//    flash.js is distributed in the hope that it will be
//    useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
//    General Public License for more details.
//
//


function insertFlashObject(strMovie, nWidth, nHeight) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" ');
	document.write('type="application/x-shockwave-flash" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ');
	document.write('width="' + nWidth + '" height="' + nHeight + '">');
	document.write('<param name="movie" value="' + strMovie + '">');
	document.write('<param name="quality" value="high">');
	document.write('<embed type="application/x-shockwave-flash" ');
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" ');
	document.write('width="' + nWidth + '" height="' + nHeight + '" ');
	document.write('src="' + strMovie + '" ');
	document.write('quality="high">');
	document.write('</embed></object>');
}


//-->