// JavaScript Document
function open_window(url) {
	window.open(url, 'new_window', 'width=800,height=600,menubar=yes,resizable=yes,scrollbars=yes');
}

function toggle_content(id) {
	// window.alert(document.getElementById(id).style.display);

	if (document.getElementById(id).style.display == 'none') {
		//window.alert('I will display it now');
		document.getElementById(id).style.display = 'block';
	}
	else {
		//window.alert('I will hide it now');
		document.getElementById(id).style.display = 'none';
	}

}