// www.cryer.co.uk/resources/javascript/script3.htm
function LoadImage(imageName, imageFile)
{
  if (!document.images) return;
  if (!document.images[imageName]) return;
  if (!document.images[imageName].src!='') return;
  document.images[imageName].src = imageFile; 
}
function LoadFlash(idDiv, imageFile, nW, nH)
{
//width="536" height="165" 
var htmlFlash =''; 
	htmlFlash +='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + nW + '" height="'+ nH + '" >';
	htmlFlash +='<param name="movie" value="' + imageFile + '">';
	htmlFlash +='<param name="quality" value="high">';
	htmlFlash +='<param name="wmode" value="transparent">';	
	htmlFlash +='<param name="play" value="true">';
	htmlFlash +='<embed src="' + imageFile + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + nW + '" height="'+ nH + '"></embed>';
	htmlFlash +='</object>';
	document.getElementById(idDiv).innerHTML = htmlFlash;
}