function InsertFlashObject(fileLocation,width,height)
{
	document.write('<object data="' + fileLocation + '" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '">');
	document.write('<param name="movie" value="' + fileLocation + '">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="menu" value="false" /> ');
	document.write('<a href="http://www.macromedia.com/go/getflashplayer" target="_blank">');
	document.write('Please Install the Flash Player!!</a>');
	document.write('</object>');
}