//==============================================
// Clear Box
//==============================================
function clearBox(inputbutton, fillValue){
	if (inputbutton.value==fillValue) {
		inputbutton.value=''
	}
}
function fillBox(inputbutton, fillValue){
	if (inputbutton.value=="") {
		inputbutton.value=fillValue
	}
}
//==============================================


//==============================================
//Error Handler
//==============================================
function errorhandler() { 
	return true; 
}
window.onerror=errorhandler;
//==============================================

