function checkVal(obj, value) {
	if (obj.value==value) {
		obj.select();
	}
	if (obj.value=="") {
		obj.value=value;
	}
}
