function warnMessage(text,link) {
	if (confirm(text)) { window.location=link; }
	else return false;
}
function submitAnchorForm(formID) {
	document.getElementById(formID).submit();
}

function copyLink(linkID) {
	alert("copying");
	overallID = "url" + linkID;
	holdtext.innerText = overallID.innerText;
	Copied = holdtext.createTextRange();
	Copied.execCommand("Copy");
	alert("Copied!");
}

function fadeOut(divID) {
	Effect.Fade(divID,{duration:0.3});
}