﻿//Javascript to convert standards compliant links to open in new windows

function externalsite(url){
	window.open(url);
}

