//-----------------------------------------------
function WriteFlash(width,height,src)
{
fobj='';
fobj+='<object type="application/x-shockwave-flash" data="'+src+'" width="'+width+'" height="'+height+'">';
fobj+='<param name="movie" value="'+src+'"/>';
fobj+='<param name="wmode" value="transparent"/>';
fobj+='</object>';

document.write(fobj);
}
//-----------------------------------------------
function SetWrapperWidth()
{
var imgcontainer=document.getElementById('images');
var alltags=imgcontainer.getElementsByTagName('img');
var width=0;

 for (i=0; i<alltags.length; i++)
  		{
		width+=(alltags[i].width+4);
		}
document.getElementById('wrapper').style.width=width+'px';
}

