<!--
// remove frames
// if (parent.frames.length > 0) {parent.location.href = location.href;}
var ButtonPressed = false;
var theForm = '';
var action_div_filler_text;
var HideSelectBoxes = 0;
var PLUS = new Image(); PLUS.src = '/graphics_uc/boards/plus.gif';
var MINUS = new Image(); MINUS.src = '/graphics_uc/boards/minus.gif';
var BIG_PLUS = new Image(); BIG_PLUS.src = '/graphics_uc/plus.gif';
var BIG_MINUS = new Image(); BIG_MINUS.src = '/graphics_uc/minus.gif';
function disableButton(button) {
   if (!ButtonPressed){
        button.value ="  Please wait ...  ";
        button.disabled = true;
        ButtonPressed = true;
        return true;
   } else {
        return false;
   }
}
function openpopup(popURL,popScrollbars,popWidth,popHeight,popName) {
if (!popURL) { return false }
if (!popScrollbars) { popScrollbars = 'yes' }
if (!popWidth) { popWidth = '450' }
if (!popHeight) { popHeight = '500' }
if (!popName) { popName = 'popupwindow' }
var popString = 'scrollbars='+popScrollbars+',width='+popWidth+',height='+popHeight;
popupWindow=open(popURL,popName,popString)
if (popupWindow==null || typeof(popupWindow)=="undefined") alert("Oops! It looks like your browser has blocked the pop-up window from being displayed.");
if (popupWindow.opener == null) popupWindow.opener = self;
}
function di(id,name){
  if (document.images) {document.images[id].src=eval(name+".src"); }
}
// function that displays status bar message
function dm(msgStr) {
  document.returnValue = false;
  if (document.images) { 
     window.status = msgStr;
     document.returnValue = true;
  }
}
var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";
function dmim(msgStr) {
  document.returnValue = false;
  if (showMsg) { 
    window.status = msgStr;
    document.returnValue = true;
  }
}
function getRefToDiv(divID) {
    if( document.layers ) { //Netscape layers
        return document.layers[divID]; }
    if( document.getElementById ) { //DOM; IE5, NS6, Mozilla, Opera
        return document.getElementById(divID); }
    if( document.all ) { //Proprietary DOM; IE4
        return document.all[divID]; }
    if( document[divID] ) { //Netscape alternative
        return document[divID]; }
    return false;
}
function ShowDiv(divID_as_string) {
    // browser-compatible-de-referencing
    var current_div = getRefToDiv(divID_as_string);
    if( !current_div ) {
        return false; //don't go any further
    }
    if( current_div.style ) { //DOM & proprietary DOM
        current_div.style.visibility = 'visible';
        current_div.style.position = 'relative';
    } else {
        if( current_div.visibility ) { // Netscape
            current_div.visibility = 'show';
            current_div.position = 'relative';
        } else {
            return false; // stop - no further
        }
    }
    return true;
}
function HideDiv(divID_as_string) {
    // browser-compatible-de-referencing
    var current_div = getRefToDiv(divID_as_string);
    if( !current_div ) {
        return false; //don't go any further
    }
    if( current_div.style ) { //DOM & proprietary DOM
        current_div.style.visibility = 'hidden';
        current_div.style.position = 'absolute';
    } else {
        if( current_div.visibility ) { // Netscape
            current_div.visibility = 'hidden';
            current_div.position = 'absolute';
        } else {
            return false; // stop - no further
        }
    }
    return true;
}
function HLRowColor(tableID,rowNumber,oldRowClass,newRowClass) { 
	if(document.getElementsByTagName){  
		var table = document.getElementById(tableID);
		if ( !table ) { return false };
		var rows = table.getElementsByTagName("tr");   
		var i = 0
		for(i = 0; i < rows.length; i++) {
			rows[i].className = oldRowClass;
		}
		rowNumber = parseInt(rowNumber);
		if ( rowNumber < 1 ) { rowNumber = 1 };
		if ( rowNumber > i ) { rowNumber = i };
		if ( rows[rowNumber] ) {
			rows[rowNumber].className = newRowClass;
		}
	} 
}
function ShowRowDiv(divID_action,divID_text,image_ID) {
    // browser-compatible-de-referencing 
    action_div = getRefToDiv(divID_action);
    text_div = getRefToDiv(divID_text);
    if( !action_div || !text_div ) {
        return false; // Go No Further!
    }
	if ( OpenClose[divID_action] == 0 ) {
		// Div is Closed --> Open
		action_div.innerHTML = text_div.innerHTML;
		OpenClose[divID_action] = 1;
		di(image_ID,'MINUS');
	} else {
		if ( !action_div_filler_text ) {
			action_div.innerHTML = '&nbsp;';
		} else {
			action_div.innerHTML = action_div_filler_text;
		}
		OpenClose[divID_action] = 0;
		di(image_ID,'PLUS');
	}
	return true;
}
function ShowHideDiv(divID_as_string,image_ID,big_or_small) {
    // browser-compatible-de-referencing
    var current_div = getRefToDiv(divID_as_string);
    if( !current_div ) {
        return false; //don't go any further
    }
    if( current_div.style ) { //DOM & proprietary DOM
		if (current_div.style.visibility == 'visible' ) {
			HideDiv(divID_as_string);
			if (image_ID ) {
				if (big_or_small == '1') {
					di(image_ID,'BIG_PLUS');
				} else {
					di(image_ID,'PLUS');
				}
			}
		} else {		
			ShowDiv(divID_as_string);
			if (image_ID ) {
				if (big_or_small == '1') {
					di(image_ID,'BIG_MINUS');
				} else {
					di(image_ID,'MINUS');
				}
			}
		}
    } else {
        if( current_div.visibility ) { // Netscape
            if ( current_div.visibility == 'show' ) {
				HideDiv(divID_as_string);
				if (big_or_small == '1') {
					di(image_ID,'BIG_PLUS');
				} else {
					di(image_ID,'PLUS');
				}
			} else {		
				ShowDiv(divID_as_string);
				if (big_or_small == '1') {
					di(image_ID,'BIG_MINUS');
				} else {
					di(image_ID,'MINUS');
				}
			}
        } else {
            return false; // stop - no further
        }
    }
    return true;
}
function changeRowStyle(style_name,tr_id) {
	if ( style_name && tr_id ) {
		var row = document.getElementById(tr_id);
		if ( row ) {
			var cells = row.getElementsByTagName("td");  
			if ( cells ) {
				for(iCount = 0; iCount < cells.length; iCount++) {
					cells[iCount].className = style_name;
				}
			}
		}
	}
}
function cs(element_id,new_style) {
	var itemid = getRefToDiv(element_id);
	if ( !itemid ) { return false; }
	if ( !new_style) { return false; }
	itemid.className = new_style;
}
function replace(s, t, u) {
// Replace a token in a string
// s  string to be processed
// t  token to be found and removed
// u  token to be inserted
// returns new String
i = s.indexOf(t);
r = "";
if (i == -1) return s;
r += s.substring(0,i) + u;
if ( i + t.length < s.length)
r += replace(s.substring(i + t.length, s.length), t, u);
return r;
}
function right(s, n) {
if (n <= 0)
return "";
else if (n > String(s).length)
return s;
else {
var iLen = String(s).length;
return String(s).substring(iLen, iLen - n);
}
}
function Left(s, n) {
if (n <= 0)
return "";
else if (n > String(s).length)
return s;
else
return String(s).substring(0,n);
}
/* SOURCE FILE: AnchorPosition.js */
function getAnchorPosition(anchorname){var useWindow=false;var coordinates=new Object();var x=0,y=0;var use_gebi=false, use_css=false, use_layers=false;if(document.getElementById){use_gebi=true;}else if(document.all){use_css=true;}else if(document.layers){use_layers=true;}if(use_gebi && document.all){x=AnchorPosition_getPageOffsetLeft(document.all[anchorname]);y=AnchorPosition_getPageOffsetTop(document.all[anchorname]);}else if(use_gebi){var o=document.getElementById(anchorname);x=AnchorPosition_getPageOffsetLeft(o);y=AnchorPosition_getPageOffsetTop(o);}else if(use_css){x=AnchorPosition_getPageOffsetLeft(document.all[anchorname]);y=AnchorPosition_getPageOffsetTop(document.all[anchorname]);}else if(use_layers){var found=0;for(var i=0;i<document.anchors.length;i++){if(document.anchors[i].name==anchorname){found=1;break;}}if(found==0){coordinates.x=0;coordinates.y=0;return coordinates;}x=document.anchors[i].x;y=document.anchors[i].y;}else{coordinates.x=0;coordinates.y=0;return coordinates;}coordinates.x=x;coordinates.y=y;return coordinates;}
function getAnchorWindowPosition(anchorname){var coordinates=getAnchorPosition(anchorname);var x=0;var y=0;if(document.getElementById){if(isNaN(window.screenX)){x=coordinates.x-document.body.scrollLeft+window.screenLeft;y=coordinates.y-document.body.scrollTop+window.screenTop;}else{x=coordinates.x+window.screenX+(window.outerWidth-window.innerWidth)-window.pageXOffset;y=coordinates.y+window.screenY+(window.outerHeight-24-window.innerHeight)-window.pageYOffset;}}else if(document.all){x=coordinates.x-document.body.scrollLeft+window.screenLeft;y=coordinates.y-document.body.scrollTop+window.screenTop;}else if(document.layers){x=coordinates.x+window.screenX+(window.outerWidth-window.innerWidth)-window.pageXOffset;y=coordinates.y+window.screenY+(window.outerHeight-24-window.innerHeight)-window.pageYOffset;}coordinates.x=x;coordinates.y=y;return coordinates;}
function AnchorPosition_getPageOffsetLeft(el){var ol=el.offsetLeft;while((el=el.offsetParent) != null){ol += el.offsetLeft;}return ol;}
function AnchorPosition_getWindowOffsetLeft(el){return AnchorPosition_getPageOffsetLeft(el)-document.body.scrollLeft;}
function AnchorPosition_getPageOffsetTop(el){var ot=el.offsetTop;while((el=el.offsetParent) != null){ot += el.offsetTop;}return ot;}
function AnchorPosition_getWindowOffsetTop(el){return AnchorPosition_getPageOffsetTop(el)-document.body.scrollTop;}
/* SOURCE FILE: PopupWindow.js */
function PopupWindow_getXYPosition(anchorname){var coordinates;if(this.type == "WINDOW"){coordinates = getAnchorWindowPosition(anchorname);}else{coordinates = getAnchorPosition(anchorname);}this.x = coordinates.x;this.y = coordinates.y;}
function PopupWindow_setSize(width,height){this.width = width;this.height = height;}
function PopupWindow_populate(contents){this.contents = contents;this.populated = false;}
function PopupWindow_setUrl(url){this.url = url;}
function PopupWindow_setWindowProperties(props){this.windowProperties = props;}
function PopupWindow_refresh(){if(this.divName != null){if(this.use_gebi){document.getElementById(this.divName).innerHTML = this.contents;}else if(this.use_css){document.all[this.divName].innerHTML = this.contents;}else if(this.use_layers){var d = document.layers[this.divName];d.document.open();d.document.writeln(this.contents);d.document.close();}}else{if(this.popupWindow != null && !this.popupWindow.closed){if(this.url!=""){this.popupWindow.location.href=this.url;}else{this.popupWindow.document.open();this.popupWindow.document.writeln(this.contents);this.popupWindow.document.close();}this.popupWindow.focus();}}}
function PopupWindow_showPopup(anchorname){hideSelectBoxes();this.getXYPosition(anchorname);this.x += this.offsetX;this.y += this.offsetY;if(!this.populated &&(this.contents != "")){this.populated = true;this.refresh();}if(this.divName != null){if(this.use_gebi){document.getElementById(this.divName).style.left = this.x + "px";document.getElementById(this.divName).style.top = this.y + "px";document.getElementById(this.divName).style.visibility = "visible";}else if(this.use_css){document.all[this.divName].style.left = this.x;document.all[this.divName].style.top = this.y;document.all[this.divName].style.visibility = "visible";}else if(this.use_layers){document.layers[this.divName].left = this.x;document.layers[this.divName].top = this.y;document.layers[this.divName].visibility = "visible";}}else{if(this.popupWindow == null || this.popupWindow.closed){if(this.x<0){this.x=0;}if(this.y<0){this.y=0;}if(screen && screen.availHeight){if((this.y + this.height) > screen.availHeight){this.y = screen.availHeight - this.height;}}if(screen && screen.availWidth){if((this.x + this.width) > screen.availWidth){this.x = screen.availWidth - this.width;}}var avoidAboutBlank = window.opera ||( document.layers && !navigator.mimeTypes['*']) || navigator.vendor == 'KDE' ||( document.childNodes && !document.all && !navigator.taintEnabled);this.popupWindow = window.open(avoidAboutBlank?"":"about:blank","window_"+anchorname,this.windowProperties+",width="+this.width+",height="+this.height+",screenX="+this.x+",left="+this.x+",screenY="+this.y+",top="+this.y+"");}this.refresh();}}
function PopupWindow_hidePopup(){if(this.divName != null){if(this.use_gebi){document.getElementById(this.divName).style.visibility = "hidden";showSelectBoxes();}else if(this.use_css){document.all[this.divName].style.visibility = "hidden";showSelectBoxes();}else if(this.use_layers){document.layers[this.divName].visibility = "hidden";showSelectBoxes();}}else{if(this.popupWindow && !this.popupWindow.closed){this.popupWindow.close();this.popupWindow = null;}}}
function PopupWindow_isClicked(e){if(this.divName != null){if(this.use_layers){var clickX = e.pageX;var clickY = e.pageY;var t = document.layers[this.divName];if((clickX > t.left) &&(clickX < t.left+t.clip.width) &&(clickY > t.top) &&(clickY < t.top+t.clip.height)){return true;}else{return false;}}else if(document.all){var t = window.event.srcElement;while(t.parentElement != null){if(t.id==this.divName){return true;}t = t.parentElement;}return false;}else if(this.use_gebi && e){var t = e.originalTarget;while(t.parentNode != null){if(t.id==this.divName){return true;}t = t.parentNode;}return false;}return false;}return false;}
function PopupWindow_hideIfNotClicked(e){if(this.autoHideEnabled && !this.isClicked(e)){this.hidePopup();}}
function PopupWindow_autoHide(){this.autoHideEnabled = true;}
function PopupWindow_hidePopupWindows(e){for(var i=0;i<popupWindowObjects.length;i++){if(popupWindowObjects[i] != null){var p = popupWindowObjects[i];p.hideIfNotClicked(e);}}}
function PopupWindow_attachListener(){if(document.layers){document.captureEvents(Event.MOUSEUP);}window.popupWindowOldEventListener = document.onmouseup;if(window.popupWindowOldEventListener != null){document.onmouseup = new Function("window.popupWindowOldEventListener();PopupWindow_hidePopupWindows();");}else{document.onmouseup = PopupWindow_hidePopupWindows;}}
function PopupWindow(){if(!window.popupWindowIndex){window.popupWindowIndex = 0;}if(!window.popupWindowObjects){window.popupWindowObjects = new Array();}if(!window.listenerAttached){window.listenerAttached = true;PopupWindow_attachListener();}this.index = popupWindowIndex++;popupWindowObjects[this.index] = this;this.divName = null;this.popupWindow = null;this.width=0;this.height=0;this.populated = false;this.visible = false;this.autoHideEnabled = false;this.contents = "";this.url="";this.windowProperties="toolbar=no,location=no,status=no,menubar=no,scrollbars=auto,resizable,alwaysRaised,dependent,titlebar=no";if(arguments.length>0){this.type="DIV";this.divName = arguments[0];}else{this.type="WINDOW";}this.use_gebi = false;this.use_css = false;this.use_layers = false;if(document.getElementById){this.use_gebi = true;}else if(document.all){this.use_css = true;}else if(document.layers){this.use_layers = true;}else{this.type = "WINDOW";}this.offsetX = 0;this.offsetY = 0;this.getXYPosition = PopupWindow_getXYPosition;this.populate = PopupWindow_populate;this.setUrl = PopupWindow_setUrl;this.setWindowProperties = PopupWindow_setWindowProperties;this.refresh = PopupWindow_refresh;this.showPopup = PopupWindow_showPopup;this.hidePopup = PopupWindow_hidePopup;this.setSize = PopupWindow_setSize;this.isClicked = PopupWindow_isClicked;this.autoHide = PopupWindow_autoHide;this.hideIfNotClicked = PopupWindow_hideIfNotClicked;}
function NiftyCheck(){
if(!document.getElementById || !document.createElement)
    return(false);
isXHTML=/html\:/.test(document.getElementsByTagName('body')[0].nodeName);
if(Array.prototype.push==null){Array.prototype.push=function(){
      this[this.length]=arguments[0]; return(this.length);}}
return(true);
}


function hideSelectBoxes() {
	if ( !HideSelectBoxes ) {
		// ie 5.5+ hack for select box bleed-through on menus/iframes
		var temp_div = '';
		var hidden_div = '';
		for(i = 1; i <= 10; i++) {
			temp_div = getRefToDiv('selectbox'+i);
			hidden_div = getRefToDiv('selectboxhide'+i);
			if ( temp_div && hidden_div) { hidden_div.innerHTML = temp_div.innerHTML; temp_div.innerHTML = ''; }
		}
		HideSelectBoxes = 1;
	}
}
function showSelectBoxes() {
	if ( HideSelectBoxes ) {
		// ie 5.5+ hack for select box bleed-through on menus/iframes
		var temp_div = '';
		var hidden_div = '';
		for(i = 1; i <= 10; i++) {
			temp_div = getRefToDiv('selectbox'+i);
			hidden_div = getRefToDiv('selectboxhide'+i);
			if ( temp_div && hidden_div) { temp_div.innerHTML = hidden_div.innerHTML; hidden_div.innerHTML = ''; }
		}
		HideSelectBoxes = 0;
	}
}
function Rounded(selector,wich,bk,color,opt){
var i,prefixt,prefixb,cn="r",ecolor="",edges=false,eclass="",b=false,t=false;

if(color=="transparent"){
    cn=cn+"x";
    ecolor=bk;
    bk="transparent";
    }
else if(opt && opt.indexOf("border")>=0){
    var optar=opt.split(" ");
    for(i=0;i<optar.length;i++)
        if(optar[i].indexOf("#")>=0) ecolor=optar[i];
    if(ecolor=="") ecolor="#666";
    cn+="e";
    edges=true;
    }
else if(opt && opt.indexOf("smooth")>=0){
    cn+="a";
    ecolor=Mix(bk,color);
    }
if(opt && opt.indexOf("small")>=0) cn+="s";
prefixt=cn;
prefixb=cn;
if(wich.indexOf("all")>=0){t=true;b=true}
else if(wich.indexOf("top")>=0) t="true";
else if(wich.indexOf("tl")>=0){
    t="true";
    if(wich.indexOf("tr")<0) prefixt+="l";
    }
else if(wich.indexOf("tr")>=0){
    t="true";
    prefixt+="r";
    }
if(wich.indexOf("bottom")>=0) b=true;
else if(wich.indexOf("bl")>=0){
    b="true";
    if(wich.indexOf("br")<0) prefixb+="l";
    }
else if(wich.indexOf("br")>=0){
    b="true";
    prefixb+="r";
    }
var v=getElementsBySelector(selector);
var l=v.length;
for(i=0;i<l;i++){
    if(edges) AddBorder(v[i],ecolor);
    if(t) AddTop(v[i],bk,color,ecolor,prefixt);
    if(b) AddBottom(v[i],bk,color,ecolor,prefixb);
    }
}

function AddBorder(el,bc){
var i;
if(!el.passed){
    if(el.childNodes.length==1 && el.childNodes[0].nodeType==3){
        var t=el.firstChild.nodeValue;
        el.removeChild(el.lastChild);
        var d=CreateEl("span");
        d.style.display="block";
        d.appendChild(document.createTextNode(t));
        el.appendChild(d);
        }
    for(i=0;i<el.childNodes.length;i++){
        if(el.childNodes[i].nodeType==1){
            el.childNodes[i].style.borderLeft="1px solid "+bc;
            el.childNodes[i].style.borderRight="1px solid "+bc;
            }
        }
    }
el.passed=true;
}
    
function AddTop(el,bk,color,bc,cn){
var i,lim=4,d=CreateEl("b");

if(cn.indexOf("s")>=0) lim=2;
if(bc) d.className="artop";
else d.className="rtop";
d.style.backgroundColor=bk;
for(i=1;i<=lim;i++){
    var x=CreateEl("b");
    x.className=cn + i;
    x.style.backgroundColor=color;
    if(bc) x.style.borderColor=bc;
    d.appendChild(x);
    }
el.style.paddingTop=0;
el.insertBefore(d,el.firstChild);
}

function AddBottom(el,bk,color,bc,cn){
var i,lim=4,d=CreateEl("b");

if(cn.indexOf("s")>=0) lim=2;
if(bc) d.className="artop";
else d.className="rtop";
d.style.backgroundColor=bk;
for(i=lim;i>0;i--){
    var x=CreateEl("b");
    x.className=cn + i;
    x.style.backgroundColor=color;
    if(bc) x.style.borderColor=bc;
    d.appendChild(x);
    }
el.style.paddingBottom=0;
el.appendChild(d);
}

function CreateEl(x){
if(isXHTML) return(document.createElementNS('http://www.w3.org/1999/xhtml',x));
else return(document.createElement(x));
}

function getElementsBySelector(selector){
var i,selid="",selclass="",tag=selector,f,s=[],objlist=[];

if(selector.indexOf(" ")>0){  //descendant selector like "tag#id tag"
    s=selector.split(" ");
    var fs=s[0].split("#");
    if(fs.length==1) return(objlist);
    f=document.getElementById(fs[1]);
    if(f) return(f.getElementsByTagName(s[1]));
    return(objlist);
    }
if(selector.indexOf("#")>0){ //id selector like "tag#id"
    s=selector.split("#");
    tag=s[0];
    selid=s[1];
    }
if(selid!=""){
    f=document.getElementById(selid);
    if(f) objlist.push(f);
    return(objlist);
    }
if(selector.indexOf(".")>0){  //class selector like "tag.class"
    s=selector.split(".");
    tag=s[0];
    selclass=s[1];
    }
var v=document.getElementsByTagName(tag);  // tag selector like "tag"
if(selclass=="")
    return(v);
for(i=0;i<v.length;i++){
    if(v[i].className.indexOf(selclass)>=0){
        objlist.push(v[i]);
        }
    }
return(objlist);
}

function Mix(c1,c2){
var i,step1,step2,x,y,r=new Array(3);
if(c1.length==4)step1=1;
else step1=2;
if(c2.length==4) step2=1;
else step2=2;
for(i=0;i<3;i++){
    x=parseInt(c1.substr(1+step1*i,step1),16);
    if(step1==1) x=16*x+x;
    y=parseInt(c2.substr(1+step2*i,step2),16);
    if(step2==1) y=16*y+y;
    r[i]=Math.floor((x*50+y*50)/100);
    }
return("#"+r[0].toString(16)+r[1].toString(16)+r[2].toString(16));
}
function commSTATUS(anchor_name,div_name,studentcn,type,misc_id,misc_id2) {
if (studentcn) {
var StatusForm = window.frames['StatusFrame'].document.forms['StatusForm'];
if (StatusForm) {
StatusForm.StudentCn.value = studentcn;
StatusForm.ProcessType.value = type;
StatusForm.MiscID.value = misc_id;
StatusForm.MiscID2.value = misc_id2;
StatusForm.anchor_name.value = anchor_name;
StatusForm.div_name.value = div_name;
window.frames['StatusFrame'].document.forms['StatusForm'].submit();
}
}
}
function deleteComm(table_id,tr_id,comm_id) {
var CommControlForm = window.frames['CommFrame'].document.forms['CommControlForm'];
if (CommControlForm) {
CommControlForm.table_id.value = table_id;
CommControlForm.tr_id.value = tr_id;
CommControlForm.comm_id.value = comm_id;
window.frames['CommFrame'].document.forms['CommControlForm'].submit();
}
}
function DoHiddenFrame(SI,CRN,MN) {
if (SI && CRN && MN) {
commSTATUS('instMode','instPop',MN,'instmode',SI,CRN)
}
}
function DoInstMode(SI,CRN,MN) {
document.write('<DIV ID="instMode" NAME="instMode" onClick="DoHiddenFrame(\'' + SI + '\',\'' + CRN + '\',\'' + MN + '\');" onMouseOver="cs(\'instMode\',\'instmodeHL\');" onMouseOut="cs(\'instMode\',\'instmode\');" CLASS="instmode">Instructor Mode</DIV>');
document.write('<SPAN ID="instPop" NAME="instPop" CLASS="commBOX" STYLE="width:450px;">&nbsp;</SPAN>');
document.write('<DIV ID="hidenframes" NAME="hiddenframes" STYLE="visibility:hidden;position:absolute;top:1px;left:1px;width:1px;height:1px;">');
document.write('<IFRAME border="0" SRC="/secure/' + SI + '/' + CRN + '/shortform/statctrl.htm" NAME="StatusFrame" ID="StatusFrame"></IFRAME>');
document.write('</DIV>');
}
//-->

