function getURL(linkID) {
var destination = links[linkID];
newWindow=window.open(destination,'links_window','width=800,height=600,left=0,top=0,scrollbars=yes,menubar=yes,resizable=yes,location=yes,toolbar=yes');
if (window.focus) {newWindow.focus()}
}

function showLink(linkID,show) {
	var destination = links[linkID];
	if (show == "1") {
	window.status = destination;
	}
	else {
	window.status = "";	
	}
}

function openPage(URL) {
newWindow=window.open(URL,'links_window','width=800,height=600,left=0,top=0,scrollbars=yes,menubar=yes,resizable=yes,location=yes,toolbar=yes');
if (window.focus) {newWindow.focus()}
}