// JavaScript Document
<!--
function popme (a) {
	var loc = a.getAttribute("href");
	if (loc != "") {
		window.open(loc);
		return true;
	} else {
		return false;
	}
}
function open_window (loc) {
	if (loc != "") {
		window.open(loc);
		return true;
	} else {
		return false;
	}
}
function max (int1, int2) {
	if (int1 > int2)
		return int1;
	else
		return int2;
}

function min (int1, int2) {
	if (int1 < int2)
		return int1;
	else
		return int2;
}
//-->