nsp='This page requires a browser version 3.0 or newer !';dl=document.layers;oe=window.opera?1:0;da=document.all&&!oe;ge=document.getElementById;ws=window.sidebar?true:false;izN=navigator.userAgent.toLowerCase().indexOf('netscape')>=0?true:false;if(ws&&!izN){quogl='iuy'};var msg='';function nem(){return true};window.onerror = nem;function Browser() {
 var ua, s, i;
 this.isIE = false; // Internet Explorer
 this.isNS = false; // Netscape
 this.version = null;
 ua = navigator.userAgent;
 s = "MSIE";
 if ((i = ua.indexOf(s)) >= 0) {
 this.isIE = true;
 this.version = parseFloat(ua.substr(i + s.length));
 return;
 }
 s = "Netscape6/";
 if ((i = ua.indexOf(s)) >= 0) {
 this.isNS = true;
 this.version = parseFloat(ua.substr(i + s.length));
 return;
 }
 // Treat any other "Gecko" browser as NS 6.1.
 s = "Gecko";
 if ((i = ua.indexOf(s)) >= 0) {
 this.isNS = true;
 this.version = 6.1;
 return;
 }
}
var browser = new Browser();
var cjPopUp = null;
function CJindow(x,y,url,dude) {
 //find unused random id# for element ids
 this._x = x;
 this._y = y;
 this._url = url;

 //Eventually this should move to some easy-to-alter template setup
 this.oFrame = document.createElement("div");
 this.oFrame.id = "bioPopUpThinger";
 this.oFrame.style.top = this._y + "px";
 this.oFrame.style.left = this._x + "px";
 this.oFrame.className = "window";
 this.oFrame.padre = this;
 document.body.appendChild(this.oFrame);
 if (browser.isIE) {
 var innerString = "<div id=\"titleBar\" class=\"titlebar\" style=\"position:absolute; width:330px; height:28px; left: 0px; top: 0px; line-height:28px; padding-left: 20px; z-index:84;background-image:url(../images/title.jpg);\"></div>";
 innerString += "<div id=\"clientbg\" style=\"position:absolute; width:348px; height:400px; left:0px; top:28px; background-color:#eeeee6; border-left: 1px solid #0C3469;border-right: 1px solid #0C3469; border-bottom: 1px solid #0C3469;z-index:81;\">";
 innerString += "<iframe id=\"clientFrame\" class=\"clientFrame\" name=\"clientFrame\" scrolling=\"no\" frameborder=\"0\" width=\"348px\" height=\"399px\"></iframe>";
 innerString += "</div>";
 innerString += "<div style=\"width:356px; height:239px; z-index:80; position:absolute; left: 1px; top: 5px;\"><table id=\"shadowTable\" width=\"356px\" height=\"408px\" cellpadding=\"0\" cellspacing=\"0\">";
 innerString += "<tr><td colspan=\"2\"></td><td style=\"width:8px; height:8px; background-image:url(staff/images/spacer.gif); filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='staff/images/small_3.png', sizingMethod='scale');\"></td></tr>";
 innerString += "<tr><td colspan=\"2\"></td><td id=\"shadowstretcher\" style=\"width:8px; height:392px; background-image:url(staff/images/spacer.gif);filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='staff/images/small_6.png', sizingMethod='scale');\"></td></tr>";
 innerString += "<tr><td style=\"width:8px; height:8px; background-image:url(staff/images/spacer.gif);filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='staff/images/small_7.png', sizingMethod='scale');\"></td>";
 innerString += "<td id=\"shadowhoriz\" style=\"width:340px; height:8px; background-image:url(staff/images/spacer.gif);filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='staff/images/small_8.png', sizingMethod='scale');\"></td><td style=\"width:8px; height:8px; background-image:url(staff/images/spacer.gif);filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='staff/images/small_9.png', sizingMethod='scale');\"></td></tr>";
 innerString += "</table></div>";
 } else {
 var innerString = "<div id=\"titleBar\" class=\"titlebar\" style=\"position:absolute; width:330px; height:28px; left: 0px; top: 0px; line-height:28px; padding-left: 20px; z-index:84;background-image:url(staff/images/bio_header.gif);\"></div>";
 innerString += "<div id=\"clientbg\" style=\"position:absolute; width:348px; height:376px; left:0px; top:28px; background-color:#eeeee6; border-left: 1px solid #0C3469;border-right: 1px solid #0C3469; border-bottom: 1px solid #0C3469;z-index:81;\">";
 innerString += "<iframe id=\"clientFrame\" class=\"clientFrame\" name=\"clientFrame\" scrolling=\"no\" frameborder=\"0\" width=\"348px\" height=\"375px\"></iframe>";
 innerString += "</div>";
 innerString += "<div style=\"width:356px; height:404px; z-index:80; position:absolute; left: 1px; top: 5px;\"><table id=\"shadowTable\" width=\"356px\" height=\"408px\" cellpadding=\"0\" cellspacing=\"0\">";
 innerString += "<tr><td colspan=\"2\"></td><td style=\"width:8px; height:8px; background-image:url(staff/images/small_3.png);\"></td></tr>";
 innerString += "<tr><td colspan=\"2\"></td><td id=\"shadowstretcher\" style=\"width:8px; height:392px; background-image:url(staff/images/small_6.png);\"></td></tr>";
 innerString += "<tr><td style=\"width:8px; height:8px; background-image:url(staff/images/small_7.png)\"></td><td id=\"shadowhoriz\" style=\"width:340px; height:8px; background-image:url(staff/images/small_8.png)\"></td><td style=\"width:8px; height:8px; background-image:url(staff/images/small_9.png)\"></td></tr>";
 innerString += "</table></div>";
 }
 this.oFrame.innerHTML = innerString;
 //init titlebar
 this.titleBar = document.getElementById("titleBar");
 this.titleBar.innerHTML = dude;
 this.titleBar.padre = this;
 //init client IFrame
 this.clientFrame = document.getElementById("clientFrame");
 this.clientFrame.padre = this;
 this.clientFrame.src = "staff/" + url;
 this.kill = winKill;
}
function winKill() {
 this.oFrame.innerHTML = "";
 delete cjPopUp;
 cjPopUp = null;
}
function popBio(url,name) {
 if(cjPopUp == null) {
 cjPopUp = new CJindow(400,300,url,name);
 } else {
 document.getElementById("clientFrame").src = "staff/" + url;
 document.getElementById("titleBar").innerHTML = name;
 }
}