function InfoWindow(strURL)
{
	var popWindow = window.open(strURL, "Sports", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=300");
	popWindow.focus();
}


function ReportWindow(strURL)
{
	var popWindow = window.open(strURL, "Sports", "toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=700,height=500");
	popWindow.focus();
}