//script to roll back the subnavigation bar once user mouseout the flash header movie
function flashRollBack() { //create by tee

// laifun 19-10-2004 - in normal circumstances, elements in IE should be always accessed via document.element_name
// Bug found when the <object name="header"> element in valleyville_messagebox.jsp is within a <form>.. 
// variable->header becomes undefined and caused an error

//	var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
//	var flashObj = InternetExplorer ? header : document.header;
	var flashObj = document.header;
	if (flashObj.PercentLoaded()==100 && flashObj.IsPlaying() == false) {
		flashObj.Play();
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}