function clearText(text, id){
    var input = document.getElementById(id);
    if(input.value == text){
	input.value = '';
    }
}

function checkBlank(text, id){
    var input = document.getElementById(id);
    if(input.value == ''){
	input.value = text;
    }
}
