function popupLink(url) {
		poplink = window.open(url,'poplink','scrollbars=yes,location=yes,directories=yes,status=yes,menubar=yes,toolbar=yes,resizable=yes,width=800,height=550,left=0,top=20');
		self.poplink.focus();
}

function popupInfo(url) {
		popinfo = window.open(url,'popinfo','scrollbars=yes,location=yes,directories=no,status=no,menubar=no,toolbar=yes,resizable=yes,width=680,height=490,left=110,top=20');
		self.popinfo.focus();
}

function popupDoc(url) {
		popdoc = window.open(url,'popdoc','scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes,width=725,height=550,left=30,top=20');
		self.popdoc.focus();
}

function popupResults(url) {
		poplink = window.open(url,'popresults','scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes,width=845,height=550,left=0,top=20');
		self.poplink.focus();
}

function popupRallyxResults(url) {
		poplink = window.open(url,'popresults','scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes,width=925,height=550,left=0,top=20');
		self.poplink.focus();
}

function popupWeather() {
		poplink = window.open('','popweather','scrollbars=yes,location=yes,directories=yes,status=yes,menubar=yes,toolbar=yes,resizable=yes,width=800,height=550,left=0,top=20');
		parent.document.weather.submit();
		self.poplink.focus();
}

// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
function expireNew(whenStr) {
	var image = "/graphics/misc/new4.gif";

	expireDt = new Date(whenStr);
	nowDt = new Date();

	if (expireDt.getTime() > nowDt.getTime()) {
	document.write("<img border=\"0\" src=\"" + image + "\">")
	}
}

//Example: <a href="javascript:popupLink('http://www.collegefund.org/')">American Indian College Fund</a>
