window.onload = function() {
	document.getElementById('converter').onsubmit = submitForm;
	
	submitForm();
}

function submitForm()
{
   equ = GCTBconvertequation(window.document.converter.math_notation.value);
   window.document.converter.js_notation.value = equ;
   return false;
}
