function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function switchMenu(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != "block" ) {
		el.style.display = 'block';
	}
	else {
		el.style.display = 'none';
	}
}

function submitPostLink()
{
document.postlink.submit();
}
