Ok...It's still not bringing up the prompt. I'm sorry, I am clueless, and don't even enjoy doing this stuff, so I'm sure I am annoying you like crazy.
Here is all of my javascript:
<SCRIPT language="JavaScript">
function NewCompany()
{
var NewCompany= prompt('New Company name:', ' ');
if ( (NewCompany==' ') || (NewCompany==null) )
{
NewCompany="Null";
}
}
function NewPlan()
{
var NewPlan= prompt('New Plan name:', ' ');
if ( (NewPlan==' ') || (NewPlan==null) )
{
NewPlan="Null";
}
}
function AskDelete()
{
var AskDelete= confirm('Are you sure you want to delete this company?', ' ');
}
function emptyValidation(entered, alertbox)
{
with (entered)
{
if (value == null || value == ""

{
if (alertbox!=""
{
alert(alertbox);
}
return false;
}
else
{
return true;
}
}
}
function formValidation(CompanyName)
{
with (CompanyName)
{
if (emptyValidation(CompanyName, "Please enter a Company Name."

== false)
{
CompanyName.focus();
return false;
}
}
}
function formValidation(PasswordForm)
{
//txtPassword=document.PasswordForm.txtPassword;
with (PasswordForm)
{
if (emptyValidation(txtPassword, "Please enter a password."

== false)
{
txtPassword.focus();
return false;
}
if (txtPassword.length < 6)
{
alert('Your password must be at least 6 characters long.')
}
if (emptyValidation(ConfirmPassword, "Please enter a confirmation password."

== false)
{
ConfirmPassword.focus();
return false;
}
}
}
</SCRIPT>
and here is the form code:
<form id=form1 name=PasswordForm onSubmit="return(formValidation(PasswordForm))">
<tr>
<td>
<font face=arial,tahoma size=2 color=#000000>
Password:
</td>
<td>
<input type=password size=12 maxlength=255 name=txtPassword>
</td>
</tr>
<tr>
<td>
<font face=arial,tahoma size=2 color=#000000>
Confirm Password:
</td>
<td>
<input type=password size=12 maxlength=255 name=ConfirmPassword>
</td>
</tr>
<tr>
<td colspan=2 align=right>
<input type=button value="Apply Change" onClick=formValidation(this.form)>
</td>
</tr>
</form>