// JavaScript Document

function RunFlash1()
{
   document.write('<object classid="clsid:D27CDB6E..." ... height="250" width="170">\n');
   document.write('<param name="movie" value="events/upcomingeventbanner.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="events/upcomingeventbanner.swf" ... height="250" width="170"></embed>\n');
   document.write('</object>\n');
}

function RunFlashSafe()
{
   document.write('<object classid="clsid:D27CDB6E..." ... width="580" height="265">\n');
   document.write('<param name="movie" value="/ManagedServices/SAFEbanner2.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="/ManagedServices/SAFEbanner2.swf" ... width="580" height="265"></embed>\n');
   document.write('</object>\n');
}
