// projectQueue v0.0.1 - lib.js [JavaScript]

// 2000-13-01T13:00-0700

function fnKeepOnTop() {
  self.focus();
}

function fnNewWindow(purl, winName, winWidth, winHeight) {
	if (winWidth == null) winWidth = 500;
	if (winHeight == null) winHeight = 350;
	var newWindow = window.open(purl, winName, 'width=' + winWidth + ',height=' + winHeight + ',scrollbars=no,resizable=no,toolbar=no,status=no,menubar=no,locationbar=no,personalbar=no');
}

//function fnImgOn(imageName)
//{
//  if (document.images) {
//    imgOn = eval(imgName + "On.src");
//    document [imgName].src = imgOn;
//  }
//}

//function fnImgOff(imageName)
//{
//  if (document.images) {
//    imgOff = eval(imgName + "Off.src");
//    document [imgName].src = imgOff;
//  }
//}

//function fnDetectBrowser() {
//  var bMSIE = false;
//  var bMSIE3 = false, bMSIE4 = false, bMSIE5 = false;
//  var bMSIE4_01 = false, bMSIE4_beta = false;
//  var bNetscape = false;
//  var bNetscape_2 = false, bNetscape_3 = false, bNetscape_4 = false;
//  
//  var ua = navigator.userAgent;
//  var an = navigator.appName;
//  
//  bMSIE = (ua.indexOf("MSIE")>=1);
//  if (bMSIE) {
//    bMSIE3 = (ua.indexOf("MSIE 3.0")>=1);
//    
//    var iMSIE4 = (ua.indexOf("MSIE 4.0"));
//    bMSIE4 = (iMSIE4>=1);
//    if (bMSIE4) {
//      var sMinorVer = ua.charAt(iMSIE4+8);
//      bMSIE4_beta = bMSIE4 && ((sMinorVer == "b") || (sMinorVer == "p"));
//      
//      bMSIE4_01 = bMSIE4 && (sMinorVer == "1");
//    }
//    
//    bMSIE5 = (ua.indexOf("MSIE 5.0")>=1);
//  }else if (an == "Netscape") {
//    bNetscape = true;
//    appVer = parseInt(navigator.appVersion);
//    if (appVer >=4)
//      bNetscape_4 = true;
//    else if (appVer >= 3)
//      bNetscape_3 = true;
//    else
//      bNetscape_2 = true;
//  }
//  return bMSIE, bMSIE3, bMSIE4_beta, bMSIE4_01, bMSIE4, bMSIE5, bNetscape, bNetscape_2, bNetscape_3, bNetscape_4;
//}
