﻿//把畫面上資料輸入欄位清空
function clearTextBox()   
{   
    var inputs = document.getElementsByTagName("input");   
    for(var i=0; i < inputs.length; i++) {
        if (inputs[i].type == "text" || inputs[i].type == "password") {
            inputs[i].value = "";
        }
        if (inputs[i].type == "radio" || inputs[i].type == "checkbox") {
            inputs[i].checked = false;
        }
    }
      
    var inputs = document.getElementsByTagName("textarea");   
    for (var i=0; i < inputs.length; i++) {
        inputs[i].value = "";
    }
      
    var selects = document.getElementsByTagName("select");   
    for (var i=0; i < selects.length; i++) {
        selects[i].selectedIndex = 0;
    }
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
	features = "width=" + screen.width + ",height=" + screen.height + ",top=0,left=0";
	window.open(theURL,winName,features);
}


