function hideMe(elem) {
	document.getElementById(elem).style.display = 'none';
}
function showMe(elem) {
	document.getElementById(elem).style.display = 'inline';
}
function hideShow(elem) {
	if(document.getElementById(elem).style.display == "inline") {
		hideMe(elem);
	} else {
		showMe(elem);
	}
}

function select_all(laTextArea) {
	var text_val=eval("laTextArea");
	text_val.focus();
	text_val.select();
}
