function setupLinks() {
	if (!document.getElementsByTagName)
	{
		return;
	}
	/// get all anchors in document
	var anchors = document.getElementsByTagName("a");
	
	/// loop though all anchors
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		
		if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external")
		{
			/// set target to blank window
			anchor.target = "_blank";
		}
		/// removes focus from the link when clicked
		//anchor.setAttribute("onfocus", "this.blur();");
	}
}
window.onload = setupLinks;

function ConfirmDelete(name){
	return confirm("Are sure that you want to delete the " + name);
}

function FlashZoom(link){
	//var newWindow = window.open("Popups/FlashZoom.aspx?file=" + name,"ZoomWindow","height=540,width=590,status=yes,toolbar=no,menubar=no,location=no");
	var newWindow = window.open(link,"ZoomWindow","height=540,width=590,status=yes,toolbar=no,menubar=no,location=no");
	newWindow.focus();
}