//Function to set/reset url of link to popup.
function setPopupURL(linkId, linkTarget, targetValue) {
	document.getElementById(linkId).href = linkTarget;
	document.getElementById(linkId).target = targetValue;
} 