// Determine browser.
var isMinNS4 = (navigator.appName.indexOf("Netscape") >= 0 &&
                parseFloat(navigator.appVersion) >= 4) ? 1 : 0;
var isMinIE4 = (document.all) ? 1 : 0;
var isMinIE5 = (isMinIE4 && navigator.appVersion.indexOf("5.") >= 0) ? 1 : 0;
var isMinIE6 = (isMinIE4 && navigator.appVersion.indexOf("6.") >= 0) ? 1 : 0;

//-----------------------------------------------------------------------------
// Miscellaneous Support Routines
//-----------------------------------------------------------------------------

function CS_OpenWindow(theURL,winName,features) 
{ //v2.0
  window.open(theURL,winName,features);
}

function CS_Confirm(theMsg) 
{
   return confirm(theMsg);
}

function CS_ConfirmURL(theMsg, theURL) 
{
   if (CS_Confirm(theMsg)) {
	CS_OpenWindow(theURL,'','');
   }
}

