function showSwf() {
	var swfcodehtml = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0" width="470" height="280"><PARAM NAME="MOVIE" VALUE="/Malawi.swf" /><PARAM NAME="PLAY" VALUE="true" /><PARAM NAME="LOOP" VALUE="true" /><PARAM NAME="QUALITY" VALUE="high" /><PARAM NAME="SCALE" value="noborder" /><EMBED width="470" height="280" SRC="/Malawi.swf" PLAY="true" LOOP="true" QUALITY="high" scale="noborder" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED></OBJECT>';
	document.getElementById("swfbox").style.display = "block";
	document.getElementById("swfcode").innerHTML = swfcodehtml;

}

function hideSwf() {
	document.getElementById("swfbox").style.display = "none";
	document.getElementById("swfcode").innerHTML = "";
}

