function ShowHideContent(diveffect)
{
	if(document.all){
		if(document.all[diveffect].style.display == 'none')
		{
			document.all[diveffect].style.display = 'block';
		}
		else
		{
			document.all[diveffect].style.display = 'none';
		}
	}
	else{
		if(document.getElementById(diveffect).style.display == 'none')
		{
			document.getElementById(diveffect).style.display = 'block';
		}
		else
		{
			document.getElementById(diveffect).style.display = 'none';
		}
	}
}

/**
*******************************************************************************
* these functions are used to display flash correctly on IE
*******************************************************************************
**/
function detectIE() {
	//Detect IE5.5+
	var version=0
	if (navigator.appVersion.indexOf("MSIE")!=-1){
	temp=navigator.appVersion.split("MSIE")
	version=parseFloat(temp[1])
	}
	return version
}
function dynaObj(divID, clsID, objectID, width, height, movie, flashVar1) {
	var codebase = "http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0";
	var d = document.getElementById(divID);
	d.innerHTML = '<object classid='+clsID+' codebase='+codebase+' id='+objectID+' width='+width+' height='+height+'>'+'<param name= movie value='+movie+'>'+'<param name=quality value=high />'+'<param name=FlashVars value='+flashVar1+' />'+'<param name="allowScriptAccess" value="sameDomain" />'+'</object>';
}
