Hey,
I can't see this parse error and wondered if anybody around here could help me out in finding it. The error is "Expected ";" on line 8". Anyways here's the code:
<script language="javascript">
Function selectMonth(client)
{
//////////////////////////////////////////////////////////////////////////////////
// Purpose: This function pops up a box and lets the user choose the month that //
// they want to view in the monthly report window that this function //
// opens. //
// Date Created: 2004-10-03 //
// Date Finished: 2004-10-03 //
// Author: Nick Peters //
// Pre: You need to send the client id to this function. //
// Post: Opens a new window with the monthly report that the user wants. //
//////////////////////////////////////////////////////////////////////////////////
month = prompt("Please enter the month that you would like to\n view the monthly report for with the three letter\n abbreviation. Example: Mar for March.");
window.open("MonthReport.asp?myClientID=" & client & "&Month=" & month, "Report");
}
</script>
Anyways, the error is reporting back on line 8 which is the line with the <script language="javascript">. Any ideas? Thanks in advance.