
<!-- 
// **************************************
// * Written by Brad Faircloth
// * Webmajics Webmasters Resource Center
// * http://www.webmajic.com/resources
// * You may copy any part, or all of this script      
// * However, please give credit to the author         
// **************************************

function stopError()
	{
	// had an error opening the new window
	// change variable to disable the script
	open_window="no";
	}

window.onerror = stopError;

// Check the browser version

var browser=navigator.appName + " " + navigator.appVersion;
var nn=browser.substring(9, 12);
var ms=browser.substring(50, 53);
var psj=0;

// check to see what browser is being used if its netscape ok is set to 1

if (browser.substring(0, 8)=="Netscape"){
        if (nn>="3.0") var open_window="yes";
}
if (browser.substring(0, 9)=="Microsoft"){
		if (ms>="3.0") var open_window="yes";
        if (ms=="4.0") var open_window="no"; 
        }



// end hiding -->

