
function Evaluator() {
  	document.debug.evalOut.value = eval(document.debug.evaluator.value);

}


function selectAll(){
		document.editor.codeWindow.select();
		document.editor.codeWindow.focus();
	}
function caseUp() {
 document.editor.codeWindow.value = document.editor.codeWindow.value.toUpperCase();
}
function caseDown() {
 document.editor.codeWindow.value = document.editor.codeWindow.value.toLowerCase();
}
function  clearAll()
{
 document.editor.codeWindow.value = '';
}


