// Opens a new window to the link - replaces _target="_blank" for validation reasons - add onclick="return nw(this);" to each <a>
function nw (link) {
	window.open(link.href);
	return false;
}
// Shows a the document specified
function ShowDocument(selectID, path, ext) {
	var list = document.getElementById(selectID);
	var url = path + list.options[list.selectedIndex].text + ext;
	url = url.replace("%", "%25");
	window.open(url,selectID);
}
