function LeftMenuOut(item) {
	item.className="";
}
function LeftMenuOver(item) {
	item.className="over";
}
function ClearText(input, text) {
	if (input.value==text) {
		input.value ="";
	}
}
function FileChoose(div) {
	div.firstChild.click();
}
function FileChange(file) {
	var text_box = gerElementById();
	if (text_box)
	text_box.value = file.value;
}