function DisplayUniqueHitsPerURL (CurrentForm, location)
{
 //Declaration of Local Variables
	 var strMessage;
	 
	 strMessage = '';
	 
	 if (CurrentForm.MonthStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a month.' + '\n';
	 }

	 if (CurrentForm.YearStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a year.' + '\n';
	 }

	 if (strMessage == '')
	 {
	    DisplayWindowResize('/Statistics' + location + '/UniqueHitsPerURL/' + CurrentForm.YearUniqueHitsPerURL.value + CurrentForm.MonthUniqueHitsPerURL.value + '.html', 600, 1000);
	 }
	 else
	 {
	    alert('Please fix the following: ' + '\n' + strMessage);
	 }
}
function DisplayRedirectMonthlyHitsPerURL (CurrentForm, location)
{
 //Declaration of Local Variables
	 var strMessage;
	 
	 strMessage = '';
	 
	 if (CurrentForm.MonthStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a month.' + '\n';
	 }

	 if (CurrentForm.YearStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a year.' + '\n';
	 }

	 if (strMessage == '')
	 {
	    DisplayWindowResize('/Statistics' + location + '/RedirectHitsPerURL/' + CurrentForm.YearRedirectMonthlyHitsPerURL.value + CurrentForm.MonthRedirectMonthlyHitsPerURL.value + '.html', 600, 1000);
	 }
	 else
	 {
	    alert('Please fix the following: ' + '\n' + strMessage);
	 }
}
function DisplayRedirectDailyHitsPerURL (CurrentForm, location)
{
 //Declaration of Local Variables
	 var strMessage;
	 
	 strMessage = '';
	 
	 if (CurrentForm.MonthStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a month.' + '\n';
	 }

	 if (CurrentForm.YearStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a year.' + '\n';
	 }

	 if (strMessage == '')
	 {
	    DisplayWindowResize('/Statistics' + location + '/RedirectHitsPerURL/' + CurrentForm.YearRedirectDailyHitsPerURL.value + CurrentForm.MonthRedirectDailyHitsPerURL.value + '.daily.html', 600, 1000);
	 }
	 else
	 {
	    alert('Please fix the following: ' + '\n' + strMessage);
	 }
}
function DisplayMonthlyImpressionsPerURL (CurrentForm, location)
{
 //Declaration of Local Variables
	 var strMessage;
	 
	 strMessage = '';
	 
	 if (CurrentForm.MonthStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a month.' + '\n';
	 }

	 if (CurrentForm.YearStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a year.' + '\n';
	 }

	 if (strMessage == '')
	 {
	    DisplayWindowResize('/Statistics' + location + '/ImpressionsPerURL/' + CurrentForm.YearMonthlyImpressionsPerURL.value + CurrentForm.MonthMonthlyImpressionsPerURL.value + '.html', 600, 1000);
	 }
	 else
	 {
	    alert('Please fix the following: ' + '\n' + strMessage);
	 }
}
function DisplayDailyImpressionsPerURL (CurrentForm, location)
{
 //Declaration of Local Variables
	 var strMessage;
	 
	 strMessage = '';
	 
	 if (CurrentForm.MonthStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a month.' + '\n';
	 }

	 if (CurrentForm.YearStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a year.' + '\n';
	 }

	 if (strMessage == '')
	 {
	    DisplayWindowResize('/Statistics' + location + '/ImpressionsPerURL/' + CurrentForm.YearDailyImpressionsPerURL.value + CurrentForm.MonthDailyImpressionsPerURL.value + '.daily.html', 600, 1000);
	 }
	 else
	 {
	    alert('Please fix the following: ' + '\n' + strMessage);
	 }
}
function DisplayMonthlyClickThroughsPerURL (CurrentForm, location)
{
 //Declaration of Local Variables
	 var strMessage;
	 
	 strMessage = '';
	 
	 if (CurrentForm.MonthStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a month.' + '\n';
	 }

	 if (CurrentForm.YearStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a year.' + '\n';
	 }

	 if (strMessage == '')
	 {
	    DisplayWindowResize('/Statistics' + location + '/ClickThroughsPerURL/' + CurrentForm.YearMonthlyClickThroughsPerURL.value + CurrentForm.MonthMonthlyClickThroughsPerURL.value + '.html', 600, 1000);
	 }
	 else
	 {
	    alert('Please fix the following: ' + '\n' + strMessage);
	 }
}
function DisplayDailyClickThroughsPerURL (CurrentForm, location)
{
 //Declaration of Local Variables
	 var strMessage;
	 
	 strMessage = '';
	 
	 if (CurrentForm.MonthStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a month.' + '\n';
	 }

	 if (CurrentForm.YearStats.value == '')
	 {
	    strMessage = strMessage + '     * Must select a year.' + '\n';
	 }

	 if (strMessage == '')
	 {
	    DisplayWindowResize('/Statistics' + location + '/ClickThroughsPerURL/' + CurrentForm.YearDailyClickThroughsPerURL.value + CurrentForm.MonthDailyClickThroughsPerURL.value + '.daily.html', 600, 1000);
	 }
	 else
	 {
	    alert('Please fix the following: ' + '\n' + strMessage);
	 }
}
