function menu(home, emblem) {
	var hometext = "";
	/*
	if (home == true) {
		hometext = "?home=true"		
	}
	
	if (emblem != ''){
		emblemtext = "?emblem=" + emblem
	}
	*/
	
	document.write("<div style=\"position:absolute; z-index: 1; visibility:visible;\">");
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"550\" height=\"361\"><param name=\"movie\" value=\"images/menu.swf?home=" + home + "&emblem=" + emblem + "\"><param name=\"quality\" value=\"high\"><param name=\"wmode\" value=\"transparent\"><embed src=\"images/menu.swf?home=" + home + "&emblem=" + emblem + "\" wmode=\"transparent\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"550\" height=\"361\"></embed></object>");
	document.write("</div>");
	
}

function home_animation() {
	//document.write("<div style=\"position:relative; z-index: 0; visibility:visible;\">");
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"800\" height=\"361\"><param name=\"movie\" value=\"images/home.swf\"><param name=\"quality\" value=\"high\"><param name=\"wmode\" value=\"transparent\"><embed src=\"images/home.swf\" wmode=\"transparent\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"800\" height=\"361\"></embed></object>");
	//document.write("</div>");
}

function header(section, home, emblem) {
	//if (emblem == null) {
		emblem = "home"
	//}
	
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"800\" height=\"361\"><param name=\"movie\" value=\"images/" + section + ".swf?home=" + home + "&emblem=" + emblem + "\"><param name=\"quality\" value=\"high\"><param name=\"wmode\" value=\"transparent\"><embed src=\"images/" + section + ".swf?home=" + home + "&emblem=" + emblem + "\" wmode=\"transparent\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"800\" height=\"361\"></embed></object>");
}
		
			   
			   
			   