// JavaScript Document

<!--
function readData() {
	srchString = unescape(location.search.substring(2, location.search.length));
}

function makeURL(theLink) {
	location.href = theLink + "?" + "=" + srchString;
}

function makePOP(popLink) {
	window.open(popLink + "?" + "=" + srchString,"PopupPage","height=400,width=550,scrollbars=yes,resizable=no,location=no");
}

function makeJOIN(popLink) {
	window.open(popLink + "?" + "=" + srchString,"JoinPage","menubar=yes,toolbar=yes,location=yes");
}
//-->
