// JavaScript Document

function addLoadListener(fn)
{
	if (typeof window.addEventListener != 'undefined')
	{
		window.addEventListener('load', fn, false);
	}
 	else if (typeof document.addEventListener != 'undefined')
 	{
   	document.addEventListener('load', fn, false);
	}
 	else if (typeof window.attachEvent != 'undefined')
 	{
   	window.attachEvent('onload', fn);
 	}
 	else
 	{
   	var oldfn = window.onload;
   	if (typeof window.onload != 'function')
   	{
     window.onload = fn;
   	}
   	else
   	{
     window.onload = function()
     {
       oldfn();
       fn();
     };
   }
 }
} 

function displayFlash () {

	document.getElementById('Flash2').innerHTML = '<div id="photos"><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="293" height="275"><param name="movie" value="http://www.umc.org/atf/cf/{DB6A45E4-C446-4248-82C8-E131B6424741}/peoplegroup.swf?filePath=http://www.umc.org/site/apps/nl/rss3.asp?c=lwL4KnN1LtH%26b=1735229"><param name="quality" value="high"><PARAM NAME=wmode VALUE=transparent><param name="FLASHVARS" value="filePath=http://www.umc.org/site/apps/nl/rss3.asp?c=lwL4KnN1LtH%26b=1735229" butTesting="on"><param name="swliveconnect" value="true"><embed FLASHVARS="filePath=http://www.umc.org/site/apps/nl/rss3.asp?c=lwL4KnN1LtH%26b=1735229" butTesting="on" src="http://www.umc.org/atf/cf/{DB6A45E4-C446-4248-82C8-E131B6424741}/peoplegroup.swf?filePath=http://www.umc.org/site/apps/nl/rss3.asp?c=lwL4KnN1LtH%26b=1735229" quality="high" wmode=transparent pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="293" height="275"></embed></object></div>';
}

addLoadListener(displayFlash);// JavaScript Document