// JavaScript Document var upload = 0; function uploadWindow() { if (upload > 2) { alert("上传次数超过限制,请稍候重试"); return; } var featStr = "dialogHeight:150px;dialogWidth:300px;status=no"; var filePath = window.showModalDialog("Upload_Window.asp",null,featStr); if (filePath) { document.getElementById("image").value=filePath; upload+=1; } } function resetFrom() { document.form1.writer.value=""; document.form1.title.value=""; document.form1.content.value=""; } function resetImg() { var obj = document.getElementById("img"); if (!obj) { return; } obj.parentNode.style.textAlign="center"; if (obj.height > 550) obj.height = 380; } attachEvent("onload",resetImg);