// JavaScript Document
function displayFlash(swf, width, height, video)
{
document.write('<object id="photos" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" data="'+swf+'" width="'+width+'" height="'+height+'">');
document.write('<param name="movie" value="'+swf+'" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="wmode" value="transparent" />');
document.write('<param name="flashvars" value="video='+video+'" />');
document.write('<embed name="photos" src="'+swf+'" quality="high" wmode="transparent" flashvars="video='+video+'"  width="'+width+'" height="'+height+'"></embed>');
document.write('</object>');	
}