<!--
var wind = 0;
function openNewWindow(URLtoOpen, windowName, windowWidth, windowHeigth) {
	if (wind) {
		if(!wind.closed) wind.close();
	}
	wind = window.open(URLtoOpen, windowName, 'width='+windowWidth+', height='+windowHeigth+', toolbar=no, menubar=no, scrollbars=yes, screenX=300, screenY=200');
}

function makelink(name, domain, desc, pre, post) {
	if (pre != null && pre != "") document.write(pre);

	document.write('<a href="mailto:');
	document.write(name + '&#64;');
	document.write(domain + '">');

	if (desc != null && desc != "") document.write(desc)
	else document.write(name + '&#64;' + domain);

	document.write('</a>');

	if (post != null && post != "") document.write(post);
}

function getElementsByName_iefix(tag, name) {
    var elem = document.getElementsByTagName(tag);
    var arr = new Array();
    for(i = 0, iarr = 0; i < elem.length; i++) {
        att = elem[i].getAttribute("name");
        if(att == name) {
            arr[iarr] = elem[i];
            iarr++;
        }
    }
    return arr;
}

function changeItem(id) {
	if (document.getElementById('item'+id).style.display == 'none') {
		document.getElementById('item'+id).style.display = 'block';
		document.getElementById('plus'+id).style.display = 'none';
		document.getElementById('minus'+id).style.display = 'inline';
	}
	else {
		document.getElementById('item'+id).style.display = 'none';
		document.getElementById('plus'+id).style.display = 'inline';
		document.getElementById('minus'+id).style.display = 'none';
	}
}

function changeOver(id) {
    document.getElementById('div'+id).className = 'content_item2';
}

function changeOut(id) {
    document.getElementById('div'+id).className = 'content_item';
}
//-->