// JavaScript Document
/* <script type="text/javascript" src="flash_lib.js"><!--// flash utility //--></script> */
/* <script language="JavaScript">loadFlash("home.swf", "gallery", 828, 462);</script> */

function loadFlash(file, width, height){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'" title="galleria">\n');
	document.write('<param name="movie" value="'+file+'" />\n');
	document.write('<param name="quality" value="high" /><param name="BGCOLOR" value="#000000" />\n');
	document.write('<param name="FlashVars" value="max=7&time=5000" />\n');
	document.write('<embed src="'+file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" FlashVars="max=1&time=5000" bgcolor="#000000"></embed>\n');
	document.write('</object>\n');
}

function loadFlashTransparent(file, width, height){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'" title="">\n');
	document.write('<param name="movie" value="'+file+'" />\n');
	document.write('<param name="quality" value="high" /><param name="wmode" value="transparent">\n');
	document.write('<embed src="'+file+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>\n');
	document.write('</object>\n');
}

function loadFlashId(file, id, width, height){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'" title="galleria" id="'+id+'">\n');
	document.write('<param name="movie" value="'+file+'" />\n');
	document.write('<param name="quality" value="high" /><param name="BGCOLOR" value="#000000" />\n');
	document.write('<embed src="'+file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" swLiveConnect="true" name="'+id+'" bgcolor="#000000"></embed>\n');
	document.write('</object>\n');
}

function loadFlashVar(file, id, value, width, height){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'" title="galleria" id="'+id+'">\n');
	document.write('<param name="movie" value="'+file+'" />\n');
	document.write('<param name="quality" value="high" /><param name="BGCOLOR" value="#000000" />\n');
	document.write('<param name="FlashVars" value="tuneStart='+value+'" />\n');
	document.write('<embed src="'+file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" swLiveConnect="true" name="'+id+'" FlashVars="tuneStart='+value+'" bgcolor="#000000"></embed>\n');
	document.write('</object>\n');
}