
function insertFlash(file,width,height){

document.write('<object type="application/x-shockwave-flash" data="'+ file +'" width="'+ width +'" height="'+ height +'">');
document.write('<param name="quality" value="high" />');
document.write('<param name="wmode" value="transparent" />');
document.write('<param name="movie" value="'+ file +'" />');
document.write('<embed src="index.swf" width="'+ width +'" height="'+ height +'"');
document.write('allowFullScreen="true" quality="high" bgcolor="#1F3D1F" wmode="window"');
document.write('pluginspage="http://www.macromedia.com/go/getflashplayer"');
document.write('type="application/x-shockwave-flash"></embed></object>');
}

function gallery(file,dir,width,height,transparency){
document.write('<object type="application/x-shockwave-flash" data="'+ file +'" width="'+ width +'" height="'+ height +'">');
document.write('<param name="quality" value="high" />');
document.write('<param name=FlashVars value="dir='+dir+'" />');
document.write('<param name="bgcolor" value="#A80000" />');
if (transparency){document.write('<param name="wmode" value="transparent" />');}
document.write('<param name="movie" value="'+ file +'" />');
document.write('<embed src="'+ file +'" width="'+ width +'" height="'+ height +'"');
document.write('FlashVars="dir='+dir+'"');
document.write('allowFullScreen="true" quality="high" bgcolor="#1F3D1F" wmode="window"');
document.write('pluginspage="http://www.macromedia.com/go/getflashplayer"');
document.write('type="application/x-shockwave-flash"></embed></object>');
}