// JavaScript Document

function showDiv(sDiv, aList){
	if(aList){
		for(var i=0;i<aList.length;i++){
			if(document.getElementById(aList[i])) {
				document.getElementById(aList[i]).style.display = 'none';
				var cName = document.getElementById(aList[i]).className;
				if(cName.indexOf('hide') != -1) {
					cName = cName.replace(/hide/, "");
				}
				document.getElementById(aList[i]).className = cName;
			}
		}
	}
	if(document.getElementById(sDiv)) document.getElementById(sDiv).style.display = '';
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
