<!--
function goURL(passURL) { 
	location.href=passURL; 
}

function openARIN(ipAddr) {
	var newWin;
	var urlARIN = "http://ws.arin.net/whois/?queryinput=" + ipAddr;
	var winName = "ARINWhois";
	var winProps = "height=800,width=600,toolbars=none,scrollbars=auto,resizeable=1,location=0";
	newWin = window.open(urlARIN,winName,winProps);
	//return true;
}

function checkAll(theForm){
	//alert("The passed value is: " + theForm);
	for (var i = 0; i < document.forms[theForm].elements.length; i++) {
    var e = document.forms[theForm].elements[i];
    if ((e.type == 'checkbox')) { e.checked = true; }
  }
}

function uncheckAll(theForm){
	//alert("The passed value is: " + theForm);
	for (var i = 0; i < document.forms[theForm].elements.length; i++) {
    var e = document.forms[theForm].elements[i];
    if ((e.type == 'checkbox')) { e.checked = false; }
  }
}

//-->