--- rat/client/parameter.html 2011/11/21 01:03:09 1.61 +++ rat/client/parameter.html 2025/06/28 14:35:11 1.96 @@ -5,7 +5,7 @@ The LearningOnline Network with CAPA Parameter Input Window // -// $Id: parameter.html,v 1.61 2011/11/21 01:03:09 raeburn Exp $ +// $Id: parameter.html,v 1.96 2025/06/28 14:35:11 raeburn Exp $ // // Copyright Michigan State University Board of Trustees // @@ -39,11 +39,21 @@ Parameter Input Window var ptype=''; var pvalue=''; +var pmodval=''; +var pextraval=''; +var pextravaltwo=''; var preturn=''; var pcode=''; var pscat=''; +var psmap=''; var pmarker=''; +var pmodal=''; var pname=''; +var precursive=''; +var pnonreccol=''; +var pmarkerst=''; +var pparm=''; +var pextra=''; var defhour=0; var defmin=0; @@ -71,8 +81,11 @@ function selwrite(text) { function choicestart() { this.window.choices.document.open(); - choicewrite(''); + choicewrite(''); + choicewrite(''); choicewrite(''); + choicewrite(''); + choicewrite('LON-CAPA'); choicewrite(''); choicewrite(''); + choicewrite(''); } function choiceend() { @@ -180,7 +196,7 @@ function second() { choicewrite('>'+i+''); } choicewrite(''); -} +} function date() { @@ -231,63 +247,114 @@ function month() { } choicewrite(''); } - - -function intminute() { - var thisminutes=cmins; + + +function intminute(mins) { + var thisminutes; + if ((typeof mins === 'number') && (!isNaN(mins))) { + thisminutes=mins; + } else { + thisminutes=cmins; + } var i; - choicewrite(''; for (i=0;i<=59;i++) { - choicewrite(''); + result += '>'+i+''; } - choicewrite(''); + result += ''; + return result; } -function inthour() { - var thishours=chours; +function inthour(hours) { + var thishours; + if ((typeof hours === 'number') && (!isNaN(hours))) { + thishours=hours; + } else { + thishours=chours; + } var i; - choicewrite(''; for (i=0;i<=23;i++) { - choicewrite(''); + result += '>'+i+''; } - choicewrite(''); -} + result += ''; + return result; +} -function intsecond() { - var thisseconds=csecs; +function intsecond(secs) { + var thisseconds; + if ((typeof secs === 'number') && (!isNaN(secs))) { + thisseconds=secs; + } else { + thisseconds=csecs; + } var i; - choicewrite(''; for (i=0;i<=59;i++) { - choicewrite(''); + result += '>'+i+''; } - choicewrite(''); + result += ''; + return result; } - -function intday() { - var thisdate=cdays; +function intday(days) { + var thisdate; + if ((typeof days === 'number') && (!isNaN(days))) { + thisdate=days; + } else { + thisdate=cdays; + } var i; - choicewrite(''; for (i=0;i<=31;i++) { - choicewrite(''); + result += '>'+i+''; } - choicewrite(''); + result += ''; + return result; } function intcalc() { @@ -296,7 +363,264 @@ function intcalc() { sform.hours.options[sform.hours.selectedIndex].value*1)*60+ sform.minutes.options[sform.minutes.selectedIndex].value*1)*60+ sform.seconds.options[sform.seconds.selectedIndex].value*1; - draw(); + if ((ptype=='date') && (pscat=='interval')) { + var newpmodval = ''; + var newpextraval = ''; + var newpextravaltwo = 'Done'; + if (sform.donebutton.length) { + for (var i=0; i 0)) { + svalue += ':'+possltic; + } else { + alert('Please select an LTI launcher, or choose a different supported link type.'); + return; + } + } else if (sform.deeplinkprotect[i].value == 'ltid') { + var possltid = sform.linkpossltid.options[sform.linkpossltid.selectedIndex].value; + if ((numRegExp.test(possltid)) && (possltid > 0)) { + svalue += ':'+possltid; + } else { + alert('Please select an LTI launcher, or choose a different supported link type.'); + return; + } + } + break; + } + } + } + svalue += ','; + if (sform.deeplinkmenus.length) { + for (var i=0; i 0)) { + svalue += posscoll; + } else { + alert("Please select either a numbered collection or check 'Standard (all menus)'."); + return; + } + } + break; + } + } + } + svalue += ','; + svalue += sform.deeplinktarget.options[sform.deeplinktarget.selectedIndex].value; + svalue += ','; + if (sform.deeplinkexit.length) { + for (var i=0; i 0) { + for (var j=0; j'+"\n"+ + 'Remove'; + innerDiv.appendChild(ipDiv); + } + return; +} + +function removeIpRule(caller,iptype) { + var frame = window.frames["choices"]; + if (frame.document.getElementById('LC_string_ipacc_inner_'+iptype)) { + var innerDiv = frame.document.getElementById('LC_string_ipacc_inner_'+iptype); + var divToRemove = caller.closest('div'); + if (divToRemove) { + innerDiv.removeChild(divToRemove); + ipstringeval(); + } + } + return; +} + +function gracestringeval() { + var items = choices.document.getElementsByName('setgrace'); + if (items.length) { + if (items.length > 0) { + svalue = ''; + for (var i=0; i 0) && (poss <= 31)) { + total += (poss * 86400); + } + } else if (sname == 'hours') { + if ((poss > 0) && (poss < 24)) { + total += (poss * 3600); + } + } else if (sname == 'minutes') { + if ((poss > 0) && (poss < 60)) { + total += (poss * 60); + } + } else if (sname == 'seconds') { + if ((poss > 0) && (poss < 60)) { + total += poss; + } + } + } + } + var inputElems = graceDiv.getElementsByTagName("input"); + var frac = ''; + var grad = ''; + if (inputElems.length) { + for (var j=0; j 0) && (poss <= 1)) { + frac = poss; + } + } + } else if (iname == 'grad') { + if (inputElems[j].checked) { + grad = 1; + } else { + grad = 0; + } + } + } + } + if (svalue === '') { + svalue = total+':'+frac+':'+grad; + } else { + svalue += ','+total+':'+frac+':'+grad; + } + } + } + } +} + +function graceitem(current) { + var gdays = 0; + var ghours = 0; + var gmins = 0; + var gsecs = 0; + var gfrac = ''; + var checktext = ''; + var patternGrace = /^\d+:(0|1).?\d*:(0|1)$/; + if ((current != '') && (current != 'undefined') && (patternGrace.test(current))) { + var graceItems = new Array; + graceItems = current.split(':'); + gsecs=graceItems[0]; + gdays=Math.floor(gsecs/86400); + gsecs -= gdays*86400; + ghours=Math.floor(gsecs/3600); + gsecs -= ghours*3600; + gmins=Math.floor(gsecs/60); + gsecs -= gmins*60; + gfrac = graceItems[1]; + if (graceItems[2] == 1) { + checktext = ' checked="checked"'; + } + } + return ''+ + '
Time past due'+ + ''+intday(gdays)+' days '+ + ''+inthour(ghours)+' hours
'+ + ''+intminute(gmins)+' mins'+ + ''+intsecond(gsecs)+' secs'+ + '
Partial Credit'+ + ''+ + '  
'+ + 'Remove
'; +} + +function addGrace() { + var frame = window.frames["choices"]; + if (frame.document.getElementById('LC_string_grace_inner')) { + var innerDiv = frame.document.getElementById('LC_string_grace_inner'); + var graceDiv = frame.document.createElement('div'); + graceDiv.innerHTML = graceitem(); + innerDiv.appendChild(graceDiv); + } + return; +} + +function removeGrace(caller) { + var frame = window.frames["choices"]; + if (frame.document.getElementById('LC_string_grace_inner')) { + var innerDiv = frame.document.getElementById('LC_string_grace_inner'); + var divToRemove = caller.closest('div'); + if (divToRemove) { + innerDiv.removeChild(divToRemove); + gracestringeval(); + } + } + return; +} + function radiostringeval(newval) { svalue=newval; draw(); } function callradiostringeval(newval) { - return 'onchange="parent.radiostringeval(\'' - +newval+'\')" onclick="parent.radiostringeval(\'' - +newval+'\')"'; + return 'onclick="parent.radiostringeval(\''+newval+'\')"'; +} + +function lenienteval(newval) { + if (newval == 'weighted') { + if (document.getElementById('lenientweighteddiv')) { + document.getElementById('lenientweighteddiv').style.display='block'; + } + var patternRelWeight = /^\-?[\d.]+$/; + var sform=choices.document.forms.sch; + var relwtlength = sform.lenientrelwt.length; + if ((relwtlength != '') && (typeof(relwtlength) != 'undefined')) { + for (var i=0; iX"; } choicewrite(''+selection+''); - -} +} function draw() { choicestart(); @@ -380,7 +923,16 @@ function draw() { choicewrite(' action="javascript:floateval();"'); } if (ptype=='string') { - choicewrite(' action="javascript:stringeval();"'); + if (pscat == 'ip') { + choicewrite(' action="javascript:ipstringeval();"'); + } else if (pscat == 'grace') { + choicewrite(' action="javascript:gracestringeval();"'); + } else { + choicewrite(' action="javascript:stringeval();"'); + } + } + if (ptype != 'int' && ptype != 'float' && ptype != 'string') { + choicewrite(' action=""'); } choicewrite('>'); if (ptype=='tolerance') { @@ -464,16 +1016,54 @@ function draw() { tablestart('Date and time'); } if (pscat=='interval') { + var proctorkeytype = 'hidden'; + var donebuttontext = 'none'; + if (pmodval == '_done_proctor') { + proctorkeytype = 'text'; + donebuttontext = 'block'; + } + if (pmodval == '_done') { + donebuttontext = 'block'; + } tablestart('Time interval'); - choicewrite(''); - intervaldis(); - choicewrite('Time:' - +''); - intday();choicewrite('days '); - inthour();choicewrite('hours '); - intminute(); choicewrite('mins '); intsecond(); - choicewrite('secs'); - } else { + choicewrite( [ + ''+intervaldis()+'', + 'Time:', + ''+intday()+' days ', + ''+inthour()+' hours', + ''+intminute()+' mins', + ''+intsecond()+' secs', + '', + '', + '
', + ].join("\n")); + tablestart('Provide a "Done" button to students?'); + choicewrite('Value:'); + choicewrite('
'); + choicewrite('
'); + choicewrite(''+ + ''); + choicewrite(' 
'+ + '
'+ + '
'+ + 'Button text:'+ + '
'); + choicewrite(''); + } else { choicewrite('' +cdate.toString()+ 'Date:'); @@ -535,7 +1125,7 @@ function draw() { if (ptype=='float') { if (pscat=='default') { tablestart('Default value or none'); - choicewrite(''); + choicewrite(''); } else { if (pscat=='pos') { tablestart('Positive floating point number or zero'); @@ -554,7 +1144,7 @@ function draw() { } if (ptype=='string') { - if ((pscat=='any') || (pscat=='') || (pscat=='default') || + if ((pscat=='any') || (pscat=='') || (pscat=='default') || (typeof(pscat)=='undefined')) { tablestart('Text'); choicewrite('Value:'); @@ -623,7 +1213,7 @@ function draw() { choicewrite('
'); + choicewrite(' /> Bubblesheet Exam
'); // choicewrite('
'); } if (pscat=='lenient') { + var patternLenientStd = /^(yes|no|default)$/; + var patternLenientRel = /^([\-\d\.]+)\,([\-\d\.]+)\,([\-\d\.]+)\,([\-\d\.]+)$/; + var lenientweighted = 'none'; + var relatives = new Array; tablestart('Lenient Grading (Partial Credit)'); choicewrite('Value:'); choicewrite('
'); choicewrite('
'); choicewrite('
'); + choicewrite('

'+ + '
'+ + ''+ + ''); + var lenienttypes = ['Correct (checked)','Correct (unchecked)','Incorrect (checked)','Incorrect (unchecked)']; + for (var i=0; i'+ + ''); + } + choicewrite('
Foil submission statusPoints
'+lenienttypes[i]+'
'); + } + if (pscat=='discussvote') { + tablestart('Discussion Voting'); + choicewrite('Value:'); + choicewrite('
'); + choicewrite('
'); + choicewrite('
'); + } + if (pscat=='tex') { + tablestart('TeX file display'); + choicewrite('Value:'); + choicewrite('
'); + choicewrite('
'); } if (pscat=='ip') { - tablestart('IP Number/Name'); - choicewrite('Value:'); - choicewrite(''); + var currallow = new Array; + var currdeny = new Array; + if ((svalue != '') && (typeof(svalue) != 'undefined')) { + var patternComma = /,/; + var patternAllow = /^([\[\]a-zA-Z\.\d\*\-]+)$/; + var patternDeny = /^\!([\[\]a-zA-Z\.\d\*\-]+)$/; + var current = new Array; + if (patternComma.test(svalue)) { + current = svalue.split(','); + } else { + current = [svalue]; + } + for (var i=0; iAllow fromDeny from'+"\n"); + var acctypes = ['allow','deny']; + for (var i=0; i', + '
', + '
'].join("\n")); + for (var j=0; j', + 'Remove', + '
'].join("\n")); + } + choicewrite('
'+"\n"); + } + choicewrite(''+"\n"); } if (pscat=='fileext') { tablestart('Allowed File Extensions'); @@ -708,19 +1397,330 @@ function draw() { choicewrite('
'); + choicewrite(' /> Yes, and the scope of the slot is a single resource.
'); choicewrite('
'); + choicewrite(' /> Yes, and the scope of the slot is the enclosing map/folder. When checking in, it applies to only one resource.
'); choicewrite('
'); - choicewrite(''); - } + choicewrite(' /> Yes, and the scope of the slot is the enclosing map/folder. When checking in, all resources in the map/folder are checked in.
'); + choicewrite(''); + } + if (pscat=='deeplink') { + var deeplinkvals = new Array(); + var linkprotectparts = new Array(); + var ltikeyRegExp = /^(ltic:\d+|ltid:\d+|key:[a-zA-Z\d_.!@#$%^&*()+=-]+)$/; + var linkexitparts = new Array(); + var dlinkexitRegExp = /^(yes|url|no)(|:[^:,;'"]+)$/; + var dlinkkeysty = 'hidden'; + var dlinkkeyval = ''; + var dlinklticdivsty = 'none'; + var dlinkltiddivsty = 'none'; + var dlinkmenusdivsty = 'none'; + var dlinkexitdivsty = 'none'; + var dlinkexittextval = ''; + if ((svalue != '') && (typeof(svalue) != 'undefined')) { + deeplinkvals = svalue.split(','); + if (ltikeyRegExp.test(deeplinkvals[4])) { + linkprotectparts = deeplinkvals[4].split(':'); + deeplinkvals[4] = linkprotectparts[0]; + if (linkprotectparts[0] == 'key') { + dlinkkeysty = 'text'; + dlinkkeyval = linkprotectparts[1]; + } else if (linkprotectparts[0] == 'ltic') { + dlinklticdivsty = 'block'; + } else if (linkprotectparts[0] == 'ltid') { + dlinkltiddivsty = 'block'; + } + } + if (deeplinkvals[5] >= 1) { + dlinkmenusdivsty = 'inline-block'; + } + if (dlinkexitRegExp.test(deeplinkvals[7])) { + linkexitparts = deeplinkvals[7].split(':'); + deeplinkvals[7] = linkexitparts[0]; + if (deeplinkvals[7] != 'no') { + dlinkexitdivsty = 'inline-block'; + if (!linkexitparts[1]) { + dlinkexittextval = 'Exit Tool'; + } else { + dlinkexittextval = linkexitparts[1]; + } + } + } + } else { + deeplinkvals = ['off','unhide','full','res','','0','_self','no']; + } + var deeplinkstate = new Array(); + deeplinkstate = ['only','off','both']; + var deeplinkstatetxt = new Array(); + deeplinkstatetxt = ['deep only','deeplink off','regular + deep']; + var deeplinkothers = new Array(); + deeplinkothers = ['hide','unhide']; + var deeplinkotherstxt = new Array(); + deeplinkotherstxt = ['Hidden','Unhidden']; + var deeplinklisting = new Array(); + deeplinklisting = ['full','absent','grades','details','datestatus']; + var deeplinklisttxt = new Array(); + deeplinklisttxt = ['Listed (linked) in both','Not listed','Listed in grades only','Listed (unlinked) in both','Listed (unlinked) inc. status in both']; + var deeplinkscopes = new Array(); + deeplinkscopes = ['res','map','rec']; + var deeplinkscopetxt = new Array(); + deeplinkscopetxt = ['resource only','enclosing map/folder','recursive map/folder']; + var deeplinkprotect = new Array(); + deeplinkprotect = ['none','key','ltic','ltid']; + var deeplinktarget = new Array(); + deeplinktarget = ['_self','_top']; + var deeplinktargettxt = new Array(); + deeplinktargettxt = ['Embedded','Not embedded']; + var deeplinkexit = ['yes','url','no']; + tablestart('Deep-linked items'); + choicewrite('Access status?'); + choicewrite(''); + choicewrite('Hide other resources?'); + choicewrite(''); + choicewrite('In Contents + Gradebook?'); + choicewrite(''); + choicewrite('Access scope for link'); + choicewrite(''); + choicewrite('Link protection'); + choicewrite(''); + choicewrite(' key access'); + choicewrite(''); + choicewrite('
'); + + var possmenus = new Array(); + if ((pextra != '') && (typeof(pextra) != 'undefined')) { + var lticRegExp = /^ltic_/; + var ltidRegExp = /^ltid_/; + var menusRegExp = /^menus_/; + var extras = pextra.split('&'); + for (var i=0; i= 1) { + var lticnums = new Array(); + var ltictitles = new Array(); + for (var j=0; j'); + choicewrite('
'); + choicewrite('

'); + } + } + } else if (ltidRegExp.test(extras[i])) { + extras[i] = extras[i].replace(ltidRegExp,''); + var possltid = extras[i].split(','); + if (possltid.length >= 1) { + var ltidnums = new Array(); + var ltidtitles = new Array(); + for (var j=0; j'); + choicewrite('
'); + choicewrite('

'); + } + } + + } else if (menusRegExp.test(extras[i])) { + extras[i] = extras[i].replace(menusRegExp,''); + possmenus = extras[i].split(','); + } + } + } + choicewrite('Menu Items Displayed'); + choicewrite('
'); + if (possmenus.length >= 1) { + choicewrite(''); + choicewrite('
'); + choicewrite('

'); + } + choicewrite(''); + choicewrite('Embedded?'); + choicewrite(''); + choicewrite(''); + choicewrite('Exit Button?'); + choicewrite('
'); + choicewrite(' '); + choicewrite('
'); + choicewrite('
'); + choicewrite('
Button text: '); + choicewrite(''); + choicewrite('
'); + choicewrite(''); + } + if (pscat=='grace') { + tablestart('Grace period after due date'); + choicewrite(''+ + '
'+ + '
'); + if ((svalue != '') && (typeof(svalue) != 'undefined')) { + var patternComma = /,/; + var patternGrace = /^\d+:(0|1).?\d*:(0|1)$/; + var current = new Array; + if (patternComma.test(svalue)) { + current = svalue.split(','); + } else { + current = [svalue]; + } + for (var i=0; i'); + choicewrite(graceitem(current[i])); + choicewrite('
'); + } + } + } else { + choicewrite('
'); + choicewrite(graceitem()); + choicewrite('
'); + } + choicewrite('
'); + choicewrite(''); + } } - + if (ptype=='color') { tablestart('Choose a Color'); choicewrite(''); @@ -735,7 +1735,7 @@ function draw() { colorfield(ir,ig,ib); } choicewrite(''); - } + } } choicewrite('
'); } @@ -758,6 +1758,22 @@ function catchange() { draw(); } +function recursechange() { + var rform=selector.document.forms.frec; + var count = rform.recurse.length; + if (count > 0) { + for (var i=0; i= 0 && pair[1] < 24 ) { defhour=pair[1]; } if (pair[0]=='defmin' && pair[1] >= 0 && pair[1] < 60) { defmin=pair[1]; } if (pair[0]=='defsec' && pair[1] >= 0 && pair[1] < 60) { defsec=pair[1]; } + if (pair[0]=='extra') { pextra=pair[1]; } } + var tablecol = ''; + var ismap = ''; + if (markerRegExp.test(pmarker)) { + var markerinfo = pmarker.match(markerRegExp); + if (markerinfo.length == 4) { + pmarkerst = markerinfo[1]; + pparm = markerinfo[2]; + tablecol = markerinfo[3]; + if (tablecol == 17 || tablecol == 16) { + ismap = 1; + if (tablecol == 17) { + precursive = 1; + } + pnonreccol = 16; + } else if (tablecol == 11 || tablecol == 10) { + ismap = 1; + if (tablecol == 11) { + precursive = 1; + } + pnonreccol = 10; + } else if (tablecol == 7 || tablecol == 6) { + ismap = 1; + if (tablecol == 7) { + precursive = 1; + } + pnonreccol = 6; + } else if (tablecol == 3 || tablecol == 2) { + ismap = 1; + if (tablecol == 3) { + precursive = 1; + } + pnonreccol = 2; + } + } + } + psmap = ismap; + + + if (ptype=='date' && pscat == 'interval') { + if (doneproctorRegExp.test(pvalue)) { + var current = pvalue.match(doneproctorRegExp); + if (current.length == 2) { + var textstr = current[1]; + if (textstr != '') { + var textvals = textstr.match(donetextRegExp); + if (textvals.length == 2) { + pextravaltwo = textvals[1]; + } + } + } + var intervalwithkey = pvalue.replace(doneproctorRegExp,''); + if (proctorkeyRegExp.test(intervalwithkey)) { + var currvals = intervalwithkey.match(proctorkeyRegExp); + if (currvals.length == 3) { + pvalue = currvals[1]; + pextraval = currvals[2]; + pmodval = '_done_proctor'; + } else { + pmodval = ''; + } + } + } else { + if (doneRegExp.test(pvalue)) { + var current = pvalue.match(doneRegExp); + if (current.length == 2) { + var textstr = current[1]; + if (textstr != '') { + var textvals = textstr.match(donetextRegExp); + if (textvals.length == 2) { + pextravaltwo = textvals[1]; + } + } + } + var pnumval = pvalue.replace(doneRegExp,''); + pmodval = '_done'; + pvalue = pnumval; + } + } + } svalue=pvalue; if (((ptype=='float') || (ptype=='string') || (ptype=='int')) && - (pscat=='default') && - (typeof(svalue)!="undefined") && + (pscat=='default') && + (typeof(svalue)!="undefined") && (svalue!=0) && (svalue!='')) { pscat='any'; } if (ptype=='tolerance') { @@ -857,8 +1959,11 @@ function init() { } this.window.selector.document.open(); - selwrite(''); + selwrite(''); + selwrite(''); selwrite(''); + selwrite(''); + selwrite('LON-CAPA'); selwrite(''); selwrite(''); - selwrite('
'+pname+'
'); - selwrite(''); if (ptype=='tolerance') { sopt('default','Default'); @@ -911,7 +2017,7 @@ function init() { months[10]='November'; months[11]='December'; } - + if (ptype=='int') { sopt('default','Default'); sopt('pos','Positive Integer, Not Zero'); @@ -936,11 +2042,15 @@ function init() { else if (pscat == 'examtype') { sopt('examtype','Exam Type'); } else if (pscat == 'questiontype') { sopt('questiontype','Question Type'); } else if (pscat == 'lenient') { sopt('lenient','Lenient Grading (Partial Credit)'); } + else if (pscat == 'discussvote') { sopt('discussvote','Discussion Voting'); } else if (pscat == 'ip') { sopt('ip','IP Number/Name'); } else if (pscat == 'fileext') { sopt('fileext','File Extension'); } else if (pscat == 'useslots') { sopt('useslots','Slots control access'); } + else if (pscat == 'deeplink') { sopt('deeplink','Deep-linked items'); } + else if (pscat == 'tex') { sopt('texdisplay','TeX File Display'); } + else if (pscat == 'grace') { sopt('grace','Grace period'); } else { pscat = 'any'; } - sopt('any','String Value'); + if (pscat != 'deeplink') { sopt('any','String Value'); } } if (ptype=='color') { @@ -949,67 +2059,81 @@ function init() { } selwrite('
'); - - selwrite(''); + selwrite('Recursive:   '); + selwrite(''); + selwrite('
'); + } + } + var targ='parent.opener'; + if (pmodal==1) { + targ='parent.parent'; + } + if ((ptype=='date') && (pscat=='interval')) { + selwrite('
Save  '); selwrite('Delete  '); - selwrite('Cancel'); - selwrite(''); this.window.selector.document.close(); + if (pscat == 'deeplink') { + if (psmap==1) { + document.getElementById("LCparampopup").rows="100,*"; + } else { + document.getElementById("LCparampopup").rows="60,*"; + } + } + if (pscat == 'grace') { + if (psmap==1) { + document.getElementById("LCparampopup").rows="105,*"; + } else { + document.getElementById("LCparampopup").rows="65,*"; + } + } draw(); - + } // ]]> - +