function nav(thisPage) {
var strString = '<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=900 height=250><param name=movie value="images/navigation.swf?thisPage='+thisPage+'"><param name=quality value=high><param name="wmode" value="transparent"><embed src="images/navigation.swf?thisPage='+thisPage+'" quality=high wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width=900 height=250></embed></object>';
document.write (strString);
}

function nav2(thisPage) {
var strString = '<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=900 height=250><param name=movie value="images/navigation2.swf?thisPage='+thisPage+'"><param name=quality value=high><param name="wmode" value="transparent"><embed src="images/navigation2.swf?thisPage='+thisPage+'" quality=high wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width=900 height=250></embed></object>';
document.write (strString);
}

function title() {
var strString = '<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=759 height=32><param name=movie value="images/title.swf"><param name=quality value=high><param name="wmode" value="transparent"><embed src="images/title.swf" quality=high wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width=759 height=32></embed></object>';
document.write (strString);
}

function showHideDiv(divName) {
if (document.getElementById(divName).style.display=="none")
	{document.getElementById(divName).style.display = "block";
	return true}
if (document.getElementById(divName).style.display=="block")
	{document.getElementById(divName).style.display = "none";
	return true}
}