<!-- 
function switchDiv(div_id, hdr_val) {
	var style_sheet = getStyleObject(div_id);
	if (style_sheet) {
	  	hideAll();
	  	changeObjectVisibility(div_id,"visible");
		var title = document.getElementById("area7");
		title.firstChild.nodeValue = hdr_val;
	} else {
	  	alert("Please try again with a DHTML capable browser.");
	}
}

function hideAll() {
	changeObjectVisibility('area6',"hidden");
	
}

function getStyleObject(objectId) {
	if(document.getElementById && document.getElementById(objectId)) {
		return document.getElementById(objectId).style;
	}
	else if (document.all && document.all(objectId)) {  
		return document.all(objectId).style;
	} 
	else if (document.layers && document.layers[objectId]) { 
		return document.layers[objectId];
	} else {
		return false;
	}
}

function changeObjectVisibility(objectId, newVisibility) {
    var styleObject = getStyleObject(objectId);
    if(styleObject) {
		styleObject.visibility = newVisibility;
		return true;
    } else {
		return false;
    }
}

var win=null;
function makeWin (mypage,myname,w,h,scroll,pos,tabid) {
    if(pos=="random") {
		LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;
		TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;
	}
	if(pos=="center") {
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;
	} else
		if ((pos!="center" && pos!="random") || pos==null) {
			LeftPosition=0;TopPosition=20
		}
		settings = 'width=' + w + ',height=' + h + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=' + scroll + ',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	win=window.open(mypage,myname,settings);
	win.focus();
	if(document.getElementById(tabid)) {
    	document.getElementById(tabid).className='tab_visited';
  	}
}
 -->
