// DIV SHOW HIDE
function ShowHide(div,openclose){
	thediv = document.getElementById(div);
	if(thediv.style.display == 'none' || openclose){
		thediv.style.display = 'inline';
	} else {
		thediv.style.display = 'none';
	}
	return true;
}
