version 1.26, 2003/07/10 10:29:00
|
version 1.27, 2003/11/25 22:19:22
|
Line 596 function draw() {
|
Line 596 function draw() {
|
if (pscat=='fileext') { |
if (pscat=='fileext') { |
tablestart('Allowed File Extensions'); |
tablestart('Allowed File Extensions'); |
choicewrite('<tr bgcolor="#AAFFAA"><td>Value:</td><td colspan=2>'); |
choicewrite('<tr bgcolor="#AAFFAA"><td>Value:</td><td colspan=2>'); |
choicewrite('<input name="stringval" value="txt"'+ |
choicewrite('<input name="radstringval" value="txt"'+ |
' type="radio" onChange="parent.radiostringeval(\'txt\')"'); |
' type="radio" onChange="parent.radiostringeval(\'txt\')"'); |
if (svalue=='txt') { choicewrite(' checked'); } |
if (svalue=='txt') { choicewrite(' checked'); } |
choicewrite('> Plain Text<br />'); |
choicewrite('> Plain Text<br />'); |
choicewrite('<input name="stringval" value="png,jpg,jpeg,gif"'+ |
choicewrite('<input name="radstringval" value="png,jpg,jpeg,gif"'+ |
' type="radio" onChange="parent.radiostringeval(\'png,jpg,jpeg,gif\')"'); |
' type="radio" onChange="parent.radiostringeval(\'png,jpg,jpeg,gif\')"'); |
if (svalue=='png,jpg,jpeg,gif') { choicewrite(' checked'); } |
if (svalue=='png,jpg,jpeg,gif') { choicewrite(' checked'); } |
choicewrite('> Picture File<br />'); |
choicewrite('> Picture File<br />'); |
choicewrite('<input name="stringval" value="doc,xls,ppt"'+ |
choicewrite('<input name="radstringval" value="doc,xls,ppt"'+ |
' type="radio" onChange="parent.radiostringeval(\'doc,xls,ppt\')"'); |
' type="radio" onChange="parent.radiostringeval(\'doc,xls,ppt\')"'); |
if (svalue=='doc,xls,ppt') { choicewrite(' checked'); } |
if (svalue=='doc,xls,ppt') { choicewrite(' checked'); } |
choicewrite('> Office Document<br />'); |
choicewrite('> Office Document<br />'); |