﻿
function openStdWin(sPath, sName, iX, iY, sCustomWinFeatures)
{
try {
    if (sName != null) {
        sName = sName.replace(' ', '_');
    }
    var features = "width=" + iX + ",height=" + iY + ",status=1,resizable=1,scrollbars=1" + (IsNull(sCustomWinFeatures) ? "" : "," + sCustomWinFeatures);
    return window.open(sPath, sName, features);
}
catch(e) {alert(e.message);}
}

function IsNull(o)
{
return ("undefined" == typeof(o) || "unknown" == typeof(o) || null == o)
}

var version=0;
if(navigator.appName.indexOf("Internet Explorer") != -1)
{
    temp=navigator.appVersion.split("MSIE");
    version=parseFloat(temp[1]);
}
if (version>0 && version <= 6) { alert("This site does not support IE6 and you will see performance issues if you continue.  It is recommended to use FF or IE7 or greater to view this site. "); }

