// This little script sets a global variable with the browser type

var browserName = navigator.appName

//Courtesy of TF.N, this little script will break any page out of frames

if (window != window.top)
	top.location.href = location.href;

// This little script is used by the downloads page

function getDown(filetoget) {

url = "getdown.asp?search=" + filetoget
popUpWin = window.open(url,'popupWin','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=400,height=120');

if (browserName == 'Netscape') {
	popUpWin.focus();
	}
}

// This script is for displaying the source information in an entry listing -->

function getSource(srcName) {

url = "getsource.asp?search=" + srcName
popUpWin = window.open(url,'popupWin','toolbar=0,location=no,directories=0,status=0,scrollbars=yes,resizable=1,width=420,height=240');

if (browserName == 'Netscape') {
	popUpWin.focus();
	}
}
