/************************************************************* 
* Developed for OGCC by Depman Brothers
* 
* Javascript launcher for Flash movies 
* 
* C 2007 - This document is the intellectual property of OGCC
**************************************************************/

/* header */
/* loadFlashMovie('header_images', 'imagearea', 730, 78) */
function loadFlashMovie(file,movie,width,height)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" ');
	document.write('width="' + width + '" height="' + height + '" id="' + movie + '">\n');
	document.write('<param name="movie" value="mm_fl/' + file + '.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<param name="wmode" value="transparent" />\n');	
	document.write('<param name="swliveconnect" value="true" />\n');
	document.write('<embed src="mm_fl/' + file + '.swf" width="' + width + '" height="' + height + '" quality="high" menu="false" wmode="transparent" ');
	document.write('swliveconnect="true" pluginspage="http://www.macromedia.com/go/getflashplayer" ');
	document.write('type="application/x-shockwave-flash" name="' + movie + '"></embed>\n');
	document.write('</object>\n');
}