function insertFlash(swf,width,height,bgcolor,base)
{
	// set default bgcolor if not provided
	if(!bgcolor || bgcolor=="") bgcolor = "#FFFFFF";
	// write the flash tags
	var id = swf.substring(swf.length - 3);
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width=\""+width+"\" height=\""+height+"\" id=\""+id+"\" align=\"middle\">");
	document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
	document.write("<param name=\"movie\" value=\""+swf+"\" />");
	document.write("<param name=\"quality\" value=\"high\" />");
	document.write("<param name=\"bgcolor\" value=\""+bgcolor+"\" />");
	document.write("<embed src=\""+swf+"\" quality=\"high\" bgcolor=\""+bgcolor+"\" width=\""+width+"\" height=\""+height+"\" name=\""+id+"\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
	document.write("</object>");
}

function spawnWindow(URL,Name,features)
{
	window.open(URL,Name,features);
}
function writeFooter()
{
	var footer = '&copy; 2006 <a href="http://www.themetonline.org">THE MET</a> | '+
	'Powered by <a href="http://www.theagrouponline.com" target="_blank" >The A Group</a>';
	document.write(footer);
}

