//Function to set/reset url of link to popup.
function setPopupURL(linkId, linkTarget, targetValue) {
	document.getElementById(linkId).href = linkTarget;
	document.getElementById(linkId).target = targetValue;
} 

function contactPopup(url) {
	window.open(url, '', 'toolbar=yes,directories=no,status=no,location=0,resizable=yes,scrollbars=yes,menubar=no,width=800,height=595,screenY=25,screenX=25,top=25,left=25');
}