//Activating ActiveX Controls work around for Eolas lawsuit
//jim b 06/20/2006

function CreateControl(ID)
{
	var d = document.getElementById(ID);
	d.innerHTML = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' "
					+ "codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' "
					+ "width='640' "
					+ "height='480' "
					+ "ID='Shockwaveflash2' "
					+ "VIEWASTEXT> "
				+ "<param name='movie' value='http://postgazette.naviciti.com/interface_final001.swf'> "
				+ "<param name='quality' value='high'> "
				+ "<embed src='http://postgazette.naviciti.com/interface_final001.swf' "
				+ "quality='high' "
				+ "pluginspage='http://www.macromedia.com/go/getflashplayer' "
				+ "type='application/x-shockwave-flash' "
				+ "width='640' "
				+ "height='480'> "
				+ "</embed> "
			+"</object>";
}
