// JavaScript Document
var toggled = '';
function displayObject(id) {
	document.getElementById(id).style.display = 'block';
}
function hideObject(id) {
	document.getElementById(id).style.display = 'none';
}
function toggleObject(id) {
	var obj = document.getElementById(id);
	if(obj.style.display == 'block') {
		obj.style.display = 'none';
	} else {
		obj.style.display = 'block';
	}
}

function displayForm(id1,id2) {
	hideObject(id1);
	displayObject(id2);
}
function goTo() {
	var sE = null, url;
	if(document.getElementById) {
		sE = document.getElementById('linkMenu');
	} else if(document.all) {
		sE = document.all['linkMenu'];
	}
	if(sE && (url = sE.options[sE.selectedIndex].value)) {
		location.href = url;
	}
}
