
function ShowReports(SortBy){
	if(!SortBy){SortBy='Title';}
	$('SortBy').value = SortBy;
	document.Compare.submit();
}



function AddScript(Url)
{
	//console.log(Url);
	var elScript = document.createElement( 'script' );
	elScript.src = Url
	document.body.appendChild( elScript );
}