function InsertTextField(strName, strWid){	var s = "<input type=\"text\" name=\"" + strName + "\" size=\"" + strWid + "\" \/>"/*	alert(s) */		document.write(s)}function InsertTextArea(strName, strCols, strRows){	var s = "<textarea name=\"" + strName + "\" cols=\"" + strCols + "\" rows=\"" + strRows + "\"><\/textarea>"/*	alert(s) */		document.write(s)}