//
// Fix Mozilla/Firefox Bug
// input:file
//
MS_set_input_size = function(id, inputsize) {
		if(document.getElementById(id) != null) {
			document.getElementById(id).size = inputsize;
		}
};

window.onload = function() {

	MS_set_input_size("uid10",8);
};