<!--

/**
 * Prints a flash object to the page
 *
 * @param fla the source of the swf
 * @param flashvar the var to load into the swf
 * @param w the width of the swf
 * @param h the height of the swf
 *
 */function addFlash (fla,flashvar,w,h) {	str = "<object class='flash' type='application/x-shockwave-flash' scale='noscale' data='" + fla + "' width='"+w+"' height='"+h+"'>";	str += "<param name='loop' value='false' />";	str += "<param name='quality' value='high' />";	str += "<param name='scale' value='noscale' />";	str += "<param name='menu' value='no' />";	str += "<param name='movie' value='" + fla + "' />";
	str += "<param name='FlashVars' value='" + flashvar + "' />";	str += "<a href='http://www.macromedia.com/software/flash/about/'>Download the newest Macromedia Flash plugin here.</a>";	str += "</object>";	document.writeln(str);}

/**
 * Makes external links open in a new window
 *
 */function externalLinks() {	
	if(!document.getElementsByTagName) return;	
	var anchors = document.getElementsByTagName("a");	
	for(var i = 0; i < anchors.length; i++) {		var anchor = anchors[i];
		
		if(anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank";	}}-->