// JavaScript Document
<!--
function findStyleValue(objectID, styleProp, IEStyleProp) {
	var object = document.getElementById(objectID);
	if (object.currentStyle) return object.currentStyle[IEStyleProp]
	else if(window.getComputedStyle) {
		compStyle = window.getComputedStyle(object,'');
		return compStyle.getPropertyValue(styleProp);
	}
}
function show(objectID) {
var object1 = document.getElementById(objectID);
state = findStyleValue(objectID, 'display', 'display');
	if (state == 'none') 
		object1.style.display = 'block';
	else {
		if (state == 'block')
			object1.style.display = 'none';
	else object1.style.display = 'block';
	}
	
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->