Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help?!?! (please)

Status
Not open for further replies.

moogwai

Programmer
Mar 6, 2002
11
US
salutations reader(s). I have a form with a submit/validation function. IE works lovely, netscape on the other hand... I get an error:

Error: uncaught exception: [Exception... &quot;Component returned failure code: 0x805303e8 [nsIDOMHTMLFormElement.submit]&quot; nsresult: &quot;0x805303e8 (<unknown>)&quot; location: &quot;JS frame :: file:///C:/WINNT/Profiles/Administrator.000/Desktop/app.html :: validate :: line 310&quot; data: no]

I have no idea what this means. There was an issue of Netscape saying myForm was not defined when the submit code was myForm.submit() so I changed it to x.submit() which is when I received the previously stated error message. myForm is what the form is called. Here is the abbreviated version of what I have, the error points to the line (310)x.submit():

(in the head)
function validate()
{
x=document.myForm
if (x.First_Name.value == &quot;&quot;)
{
alert (&quot;Please enter your first name.&quot;);
x.First_Name.focus()
return;
}
x.submit()
}
...
<form name=&quot;myForm&quot; action=&quot;MAILTO:noone@nowhere.com?subject=My aching brian&quot; method=&quot;post&quot; enctype=&quot;text/plain&quot; onsubmit=&quot;return validate()&quot;>


Any points would be greatly appreciated. Please let me know if my question is indecipherable.
Thanks a lot, Moog.
 
Would you mind posting your entire page or its URL? I didn't get any error while troubleshooting, so I'd like to see what's causing yours.
bluebrain.gif
blueuniment.gif
 
there is no URL, for the file, it will be packaged with an .exe that will launch the HTML file and auto send the form on submit. I have the file if you have an address I can send it to. It's a bit large to paste into one of these windows.

Thanks a bunch.
Moogwai
 
try:

x = document.forms['myForm'];

netscape is reaaal picky about DOM object naming declarations...
 
okay here goes! Thanks for the willingness!!! Please excure the formatting....



<html>
<head>
<title>Application</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<script language=javascript>

function validate()
{
x = document.myForm ;

if (x.First_Name.value == &quot;&quot;)
{
alert (&quot;Please enter your first name.&quot;);
x.First_Name.focus()
return;
}
if (x.Last_Name.value == &quot;&quot;)
{
alert (&quot;Please enter your last name.&quot;);
x.form.Last_Name.focus()
return;
}
if (x.Street_Address.value == &quot;&quot;)
{
alert (&quot;Please enter your street address.&quot;);
x.form.Street_Address.focus()
return;
}
if (x.City.value == &quot;&quot;)
{
alert (&quot;Please enter your city.&quot;);
x.form.City.focus()
return;
}
if (x.State.value == &quot;&quot;)
{
alert (&quot;Please enter a state.&quot;);
x.State.focus()
return;
}
if (x.State.value.indexOf('Other') != -1 && x.Other_State.value == &quot;&quot;)
{
alert (&quot;Please enter a state.&quot;);
x.Other_State.focus()
return;
}
if (x.Zip.value == &quot;&quot;)
{
alert (&quot;Please enter your zip code.&quot;);
x.Zip.focus()
return;
}
if (x.Country.value == &quot;&quot;)
{
alert (&quot;Please enter a country.&quot;);
x.Country.focus()
return;
}
if (x.Country.value.indexOf('Other') != -1 && x.Other_Country.value == &quot;&quot;)
{
alert (&quot;Please enter a country.&quot;);
x.Other_Country.focus()
return;
}

if (x.Phone_Number.value.length < 9)
{
alert (&quot;Please enter your phone number.&quot;);
x.Phone_Number.focus()
return;
}
if (x.Email.value.indexOf('@')==-1 ||
x.Email.value.indexOf('.')==-1)
{
alert (&quot;Please enter an e-mail address.&quot;);
x.Email.focus()
return;
}
if (x.Email.value == &quot;&quot;)
{
alert (&quot;Please enter your e-mail address.&quot;);
x.Email.focus()
return;
}
if (x.SSN.value.length != 9)
{
alert (&quot;Please enter your social security number.&quot;);
x.SSN.focus()
return;
}

myOption = -1;
for (i=0; i< x.program.length; i++)
{
if (x.program.checked)
{
myOption = i;
}
}
if (myOption == -1)
{
alert(&quot;You must select a Certificate Program.&quot;);
x.program[0].focus()
return false;
}
myOption2 = -1
for (i2=0; i2< x.startDate.length; i2++)
{
if (x.startDate[i2].checked)
{
myOption2 = i2;
}
}
if (myOption2 == -1)
{
alert(&quot;You must select a starting date.&quot;);
x.startDate[0].focus()
return false;
}
if (x.High_School.value == &quot;&quot;)
{
alert (&quot;Please enter your high school information.&quot;);
x.High_School.focus()
return;
}

if (x.Current_Last_Job.value == &quot;&quot;)
{
alert (&quot;Please enter your job info.&quot;);
x.Current_Last_Job.focus()
return;
}
if (x.Heard_About.value == &quot;&quot;)
{
alert (&quot;Please enter how you heard of us.&quot;);
x.Heard_About.focus()
return;
}
myOption3 = -1
for (i3=0; i3< x.Program_Efficiency.length; i3++)
{
if (x.Program_Efficiency[i3].checked)
{
myOption3 = i3;
}
}
if (myOption3 == -1)
{
alert(&quot;Please enter your technical assessment .&quot;);
x.Program_Efficiency[0].focus()
return false;
}
myOption4 = -1;
for (i=0; i< x.PC_based.length; i++)
{
if (x.PC_based.checked)
{
myOption4 = i;
}
}
if (myOption4 == -1)
{
alert(&quot;You must select your PC Based skill level.&quot;);
x.PC_based[0].focus()
return false;
}
myOption5 = -1;
for (i=0; i< x.Mac_based.length; i++)
{
if (x.Mac_based.checked)
{
myOption5 = i;
}
}
if (myOption5 == -1)
{
alert(&quot;You must select your Mac Based skill level.&quot;);
x.Mac_based[0].focus()
return false;
}
myOption6 = -1;
for (i=0; i< x.Photoshop.length; i++)
{
if (x.Photoshop.checked)
{
myOption6 = i;
}
}
if (myOption6 == -1)
{
alert(&quot;You must select your Photoshop skill level.&quot;);
x.Photoshop[0].focus()
return false;
}
myOption7 = -1;
for (i=0; i< x.Illustrator.length; i++)
{
if (x.Illustrator.checked)
{
myOption7 = i;
}
}
if (myOption7 == -1)
{
alert(&quot;You must select your Illustrator skill level.&quot;);
x.Illustrator[0].focus()
return false;
}
myOption8 = -1;
for (i=0; i< x.ImageReady.length; i++)
{
if (x.ImageReady.checked)
{
myOption8 = i;
}
}
if (myOption8 == -1)
{
alert(&quot;You must select your ImageReady skill level.&quot;);
x.ImageReady[0].focus()
return false;
}
myOption9 = -1;
for (i=0; i< x.Dreamweaver.length; i++)
{
if (x.Dreamweaver.checked)
{
myOption9 = i;
}
}
if (myOption9 == -1)
{
alert(&quot;You must select your Dreamweaver skill level.&quot;);
x.Dreamweaver[0].focus()
return false;
}
myOption10 = -1;
for (i=0; i< x.Fireworks.length; i++)
{
if (x.Fireworks.checked)
{
myOption10 = i;
}
}
if (myOption10 == -1)
{
alert(&quot;You must select your Fireworks skill level.&quot;);
x.Fireworks[0].focus()
return false;
}
myOption11 = -1;
for (i=0; i< x.Flash.length; i++)
{
if (x.Flash.checked)
{
myOption11 = i;
}
}
if (myOption11 == -1)
{
alert(&quot;You must select your Flash skill level.&quot;);
x.Flash[0].focus()
return false;
}
myOption12 = -1;
for (i=0; i< x.HTML.length; i++)
{
if (x.HTML.checked)
{
myOption12 = i;
}
}
if (myOption12 == -1)
{
alert(&quot;You must select your HTML skill level.&quot;);
x.HTML[0].focus()
return false;
}
myOption13 = -1;
for (i=0; i< x.JavaScript.length; i++)
{
if (x.JavaScript.checked)
{
myOption13 = i;
}
}
if (myOption13 == -1)
{
alert(&quot;You must select your JavaScript skill level.&quot;);
x.JavaScript[0].focus()
return false;
}
myOption14 = -1;
for (i=0; i< x.Quark.length; i++)
{
if (x.Quark.checked)
{
myOption14 = i;
}
}
if (myOption14 == -1)
{
alert(&quot;You must select your Quark skill level.&quot;);
x.Quark[0].focus()
return false;
}
x.submit()
}
</script>
</head>

<body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>

<form name=&quot;myForm&quot; action=&quot;MAILTO:noone@nowhere.com?subject=The Art Institute of Colorado CPD Application&quot; method=&quot;post&quot; enctype=&quot;text/plain&quot; onsubmit=&quot;return validate()&quot;>

<table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;>
<tr>

<td width=&quot;1&quot; height=&quot;184&quot; valign=&quot;top&quot;>&nbsp;</td>

<td width=&quot;623&quot; height=&quot;184&quot; valign=&quot;top&quot;>
<table border=0 width=&quot;665&quot; cellpadding=&quot;4&quot;>
<tr>
<td valign=&quot;middle&quot; width=&quot;72&quot; align=&quot;left&quot;>
<p align=&quot;left&quot;><b>First Name:</b></p>
</td>
<td width=&quot;352&quot;>
<input type=&quot;Text&quot; size=&quot;15&quot; name=&quot;First_Name&quot;>
</td>
<td width=&quot;60&quot;><b>Last Name:</b></td>
<td width=&quot;209&quot;>
<input type=&quot;Text&quot; size=&quot;15&quot; name=&quot;Last_Name&quot;>
</td>
</tr>
<tr>
<td valign=&quot;middle&quot; width=&quot;72&quot; align=&quot;left&quot;><b>Address: </b></td>
<td colspan=&quot;3&quot;>
<input type=&quot;Text&quot; name=&quot;Street_Address&quot; size=&quot;30&quot;>
</td>
</tr>
<tr>
<td valign=&quot;middle&quot; width=&quot;72&quot; align=&quot;left&quot; height=&quot;2&quot;><b>City: </b></td>
<td colspan=&quot;3&quot; height=&quot;2&quot;>
<input type=&quot;Text&quot; name=&quot;City&quot; size=&quot;20&quot;>
</td>
</tr>
<tr>
<td valign=&quot;middle&quot; width=&quot;72&quot; align=&quot;left&quot;><b>State: </b></td>
<td width=&quot;352&quot; valign=&quot;bottom&quot;>
<select name=&quot;State&quot;>
<option value=&quot;&quot; selected>select state</option>
<option value=&quot;AL&quot;>Alabama</option>
<option value=&quot;AK&quot;>Alaska</option>
<option value=&quot;AZ&quot;>Arizona</option>
<option value=&quot;AR&quot;>Arkansas</option>
<option value=&quot;CA&quot;>California</option>
<option value=&quot;CO&quot;>Colorado</option>
<option value=&quot;CT&quot;>Connecticut</option>
<option value=&quot;DE&quot;>Delaware</option>
<option value=&quot;FL&quot;>Florida</option>
<option value=&quot;GA&quot;>Georgia</option>
<option value=&quot;HI&quot;>Hawaii</option>
<option value=&quot;ID&quot;>Idaho</option>
<option value=&quot;IL&quot;>Illinois</option>
<option value=&quot;IN&quot;>Indiana</option>
<option value=&quot;IA&quot;>Iowa</option>
<option value=&quot;KS&quot;>Kansas</option>
<option value=&quot;KY&quot;>Kentucky</option>
<option value=&quot;LA&quot;>Louisiana</option>
<option value=&quot;ME&quot;>Maine</option>
<option value=&quot;MD&quot;>Maryland</option>
<option value=&quot;MA&quot;>Massachusetts</option>
<option value=&quot;MI&quot;>Michigan</option>
<option value=&quot;MN&quot;>Minnesota</option>
<option value=&quot;MS&quot;>Mississippi</option>
<option value=&quot;MO&quot;>Missouri</option>
<option value=&quot;MT&quot;>Montana</option>
<option value=&quot;NE&quot;>Nebraska</option>
<option value=&quot;NV&quot;>Nevada</option>
<option value=&quot;NH&quot;>New Hampshire</option>
<option value=&quot;NJ&quot;>New Jersey</option>
<option value=&quot;NM&quot;>New Mexico</option>
<option value=&quot;NY&quot;>New York</option>
<option value=&quot;NC&quot;>North Carolina</option>
<option value=&quot;ND&quot;>North Dakota</option>
<option value=&quot;OH&quot;>Ohio</option>
<option value=&quot;OK&quot;>Oklahoma</option>
<option value=&quot;OR&quot;>Oregon</option>
<option value=&quot;PA&quot;>Pennsylvania</option>
<option value=&quot;RI&quot;>Rhode Island</option>
<option value=&quot;SC&quot;>South Carolina</option>
<option value=&quot;SD&quot;>South Dakota</option>
<option value=&quot;TN&quot;>Tennessee</option>
<option value=&quot;TX&quot;>Texas</option>
<option value=&quot;UT&quot;>Utah</option>
<option value=&quot;VT&quot;>Vermont</option>
<option value=&quot;VA&quot;>Virginia</option>
<option value=&quot;WA&quot;>Washington</option>
<option value=&quot;DC&quot;>Washington, DC</option>
<option value=&quot;WV&quot;>West Virginia</option>
<option value=&quot;WI&quot;>Wisconsin</option>
<option value=&quot;WY&quot;>Wyoming</option>
<option value=&quot;Other&quot;>Other</option>
</select>
&nbsp;<font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;1&quot;> </font></td>
<td width=&quot;60&quot; valign=&quot;middle&quot; align=&quot;left&quot;>
<div align=&quot;left&quot;><b>Other State: </b></div>
</td>
<td width=&quot;209&quot; valign=&quot;right&quot;>
<input type=&quot;text&quot; name=&quot;Other_State&quot; size=&quot;10&quot;>
</td>
</tr>
<tr>
<td valign=&quot;middle&quot; width=&quot;72&quot; align=&quot;left&quot;><b>Zip:</b></td>
<td colspan=&quot;3&quot;>
<input type=&quot;Text&quot; name=&quot;Zip&quot; size=&quot;10&quot;>
</td>
</tr>
<tr>
<td valign=&quot;middle&quot; width=&quot;72&quot; align=&quot;left&quot;><b>Country:</b></td>
<td valign=&quot;bottom&quot; width=&quot;352&quot;>
<select name=&quot;Country&quot;>
<option value=&quot;&quot; selected>select country</option>
<option value=&quot;U.S.&quot;>U.S.</option>
<option value=&quot;Other&quot;>Other</option>
</select>
<font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;1&quot;> </font></td>
<td valign=&quot;middle&quot; align=&quot;left&quot; width=&quot;60&quot;><b>Other Country:</b></td>
<td valign=&quot;bottom&quot; width=&quot;209&quot;>
<input type=Text name=Other_Country size=12>
</td>
</tr>
<tr>
<td valign=&quot;middle&quot; width=&quot;72&quot; align=&quot;left&quot;><b>Phone:</b></td>
<td valign=&quot;top&quot; colspan=&quot;3&quot;>
<input type=&quot;Text&quot; name=&quot;Phone_Number&quot; size=&quot;12&quot;>
</td>
</tr>
<tr>
<td valign=&quot;middle&quot; width=&quot;72&quot; align=&quot;left&quot;><b>E-Mail:</b></td>
<td width=&quot;352&quot;>
<input type=&quot;Text&quot; name=&quot;Email&quot; size=&quot;30&quot;>
</td>
<td width=&quot;60&quot;><b>Social Security:</b></td>
<td width=&quot;209&quot;>
<input type=&quot;Text&quot; name=&quot;SSN&quot; size=&quot;30&quot;>
</td>
</tr>
<tr>
<td valign=middle width=&quot;72&quot; align=&quot;right&quot;>&nbsp;</td>
<td valign=middle colspan=&quot;3&quot;><br>
<b>2. Certificate
Program in which you are enrolling: </b><br>
<br>
<input type=&quot;radio&quot; name=&quot;program&quot; value=&quot;Advanced Web Site Programming&quot;>
<b>Advanced Web Site Programming</b>; Five, 5-week courses (25 weeks)
<br>
<input type=&quot;radio&quot; name=&quot;program&quot; value=&quot;Web Site Development&quot;>
<b>Web Site Development</b>; Five, 5-week courses (25 weeks)
<br>
<input type=&quot;radio&quot; name=&quot;program&quot; value=&quot;Digital Graphic Design&quot;>
<b>Digital Graphic Design</b>; Five, 5-week courses (25 weeks) <br>
<input type=&quot;radio&quot; name=&quot;program&quot; value=&quot;Digital Photography&quot;>
<b>Digital Photography</b>; Five, 5-week courses (25 weeks)<br>
<input type=&quot;radio&quot; name=&quot;program&quot; value=&quot;Multimedia&quot;>
<b>Multimedia</b>; Five, 5-week courses (25 weeks) <br>
<input type=&quot;radio&quot; name=&quot;program&quot; value=&quot;3D Animation Principles and Techniques&quot;>
<b>3D Animation Principles and Techniques</b>; Five, 5-week courses
(25 weeks)</td>
</tr>
<tr>
<td valign=middle width=&quot;72&quot; align=&quot;right&quot;>&nbsp;</td>
<td valign=middle colspan=&quot;3&quot;> <b><br>
3. Check Starting Date:</b><br>
<br>

<table width=&quot;50%&quot; border=&quot;0&quot;>
<tr>
<td>
<input type=&quot;radio&quot; name=&quot;startDate&quot; value=&quot;April 1, 2002&quot;>
April 1, 2002</td>
<td>
<input type=&quot;radio&quot; name=&quot;startDate&quot; value=&quot;July 8, 2002&quot;>
July 8, 2002</td>
</tr>
<tr>
<td>
<input type=&quot;radio&quot; name=&quot;startDate&quot; value=&quot;October 7, 2002&quot;>
October 7, 2002</td>
<td>
<input type=&quot;radio&quot; name=&quot;startDate&quot; value=&quot;January 6, 2003&quot;>
January 6, 2003&nbsp;&nbsp;</td>
</tr>
</table>

</td>
</tr>
<tr>
<td valign=middle width=&quot;72&quot; align=&quot;right&quot;>&nbsp;</td>
<td valign=middle colspan=&quot;3&quot;> <b><br>
4. Financial Information for all Certificate Programs:</b>
<p> </p>
<table width=&quot;70%&quot; border=&quot;1&quot;>
<tr>
<td width=&quot;49%&quot;>Tuition/ Application:</td>
<td width=&quot;51%&quot; align=&quot;right&quot;>$3,400.00</td>
</tr>
<tr>
<td width=&quot;49%&quot;>Registration Fee:</td>
<td width=&quot;51%&quot; align=&quot;right&quot;>$50.00</td>
</tr>
<tr>
<td width=&quot;49%&quot;><b>Total (Tuition and Fees):</b></td>
<td width=&quot;51%&quot; align=&quot;right&quot;><b>$3,450.00</b></td>
</tr>
<tr>
<td width=&quot;49%&quot;>Textbooks:</td>
<td width=&quot;51%&quot; align=&quot;right&quot;>$200.00</td>
</tr>
<tr>
<td width=&quot;49%&quot;>Supplies:</td>
<td width=&quot;51%&quot; align=&quot;right&quot;>$300.00</td>
</tr>
<tr>
<td width=&quot;49%&quot;><b>Total (Textbooks and Supplies):</b></td>
<td width=&quot;51%&quot; align=&quot;right&quot;><b>$500.00</b></td>
</tr>
</table>
<br>
Optional expenses: Although no specific copmuter software is required,
perticipants who wish to purchase software can do so through the
school at a discounted rate. </td>
</tr>
<tr>
<td valign=top width=&quot;72&quot; align=&quot;right&quot; height=&quot;216&quot;>
<p><br>
<br>
<br>
</p>
</td>
<td valign=middle colspan=&quot;3&quot; height=&quot;216&quot;>
<table width=&quot;100%&quot; border=&quot;0&quot;>
<tr>
<td width=&quot;24%&quot;><b>5. Education</b></td>
<td width=&quot;76%&quot;><b>School Name/ Major Course of Stud&nbsp;/&nbsp;Degree/&nbsp;<br>
Dates Attended or Graduated</b></td>
</tr>
<tr>
<td width=&quot;24%&quot;>High School:</td>
<td width=&quot;76%&quot;>
<input type=&quot;text&quot; name=&quot;High_School&quot; size=&quot;50&quot;>
</td>
</tr>
<tr>
<td width=&quot;24%&quot;>College:</td>
<td width=&quot;76%&quot;>
<input type=&quot;text&quot; name=&quot;College&quot; size=&quot;50&quot;>
</td>
</tr>
<tr>
<td width=&quot;24%&quot;>Grad Schools:</td>
<td width=&quot;76%&quot;>
<input type=&quot;text&quot; name=&quot;Grad_School&quot; size=&quot;50&quot;>
</td>
</tr>
<tr>
<td width=&quot;24%&quot;>Other: </td>
<td width=&quot;76%&quot;>
<input type=&quot;text&quot; name=&quot;Other_School&quot; size=&quot;50&quot;>
</td>
</tr>
</table>

</td>
</tr>
<tr>
<td valign=top width=&quot;72&quot; align=&quot;right&quot; height=&quot;196&quot;>
<p><br>
<br>
<br>
</p>
</td>
<td valign=middle colspan=&quot;3&quot; height=&quot;196&quot;> Please describe your employment
history starting with your current <br>
or most recent employer.<br>
<table width=&quot;100%&quot; border=&quot;0&quot;>
<tr>
<td width=&quot;24%&quot;><b>6.</b></td>
<td width=&quot;76%&quot;><b>Name of Employer/ Position Held/ Dates from/
to</b></td>
</tr>
<tr>
<td width=&quot;24%&quot;><b>Most Recent or Current:</b></td>
<td width=&quot;76%&quot;>
<input type=&quot;text&quot; name=&quot;Current_Last_Job&quot; size=&quot;50&quot;>
</td>
</tr>
<tr>
<td width=&quot;24%&quot;>2nd:</td>
<td width=&quot;76%&quot;>
<input type=&quot;text&quot; name=&quot;Job_2&quot; size=&quot;50&quot;>
</td>
</tr>
<tr>
<td width=&quot;24%&quot;>3rd:</td>
<td width=&quot;76%&quot;>
<input type=&quot;text&quot; name=&quot;Job_3&quot; size=&quot;50&quot;>
</td>
</tr>
</table>

</td>
</tr>
<tr>
<td width=&quot;72&quot;> <br>
</td>
<td width=&quot;352&quot; colspan=&quot;3&quot;>
<p><br>
<b>7. How did you hear about the Center for Professional Development?</b></p>
<p>
<input type=&quot;text&quot; name=&quot;Heard_About&quot; size=&quot;75&quot;>
</p>
</td>
</tr>
<tr>
<td width=&quot;72&quot; height=&quot;335&quot;> <br>
</td>
<td width=&quot;352&quot; colspan=&quot;3&quot; height=&quot;335&quot;>
<p><br>
<b>8. Technical Assessment and Admissions Requirements</b>-<br>
Certificate program admissions requirements include working knowledge
of computer applications and some of the following software programs.
Specific admissions requirements by certificate program are as
follows: (Please check the program you are applying for)</p>
<table width=&quot;97%&quot;>
<tr>
<td width=&quot;5%&quot;>
<input type=&quot;radio&quot; name=&quot;Program_Efficiency&quot; value=&quot;Advanced Web Site Programming&quot;>
</td>
<td width=&quot;95%&quot; align=&quot;right&quot;>
<div align=&quot;left&quot;><b>Advanced Web Site Programming</b> - Minmum
skill level; Fundamental knowledge in computer applications
(A or B below)</div>
</td>
</tr>
<tr>
<td width=&quot;5%&quot;>
<input type=&quot;radio&quot; name=&quot;Program_Efficiency&quot; value=&quot;Web Site Development&quot;>
</td>
<td width=&quot;95%&quot; align=&quot;right&quot;>
<div align=&quot;left&quot;><b>Web Site Development</b> - Minmum skill
level; Fundamental knowledge in computer applications (A
or B below)</div>
</td>
</tr>
<tr>
<td width=&quot;5%&quot;>
<input type=&quot;radio&quot; name=&quot;Program_Efficiency&quot; value=&quot;Digital Graphic Design&quot;>
</td>
<td width=&quot;95%&quot; align=&quot;right&quot;>
<div align=&quot;left&quot;><b>Digital Graphic Design</b> - Minmum skill
level; Fundamental knowledge in computer applications (A
or B below)</div>
</td>
</tr>
<tr>
<td width=&quot;5%&quot;>
<input type=&quot;radio&quot; name=&quot;Program_Efficiency&quot; value=&quot;Digital Photography&quot;>
</td>
<td width=&quot;95%&quot; align=&quot;right&quot;>
<div align=&quot;left&quot;><b>Digital Photography</b> - Minmum skill
level; Fundamental knowledge in computer applications (A
or B below)</div>
</td>
</tr>
<tr>
<td width=&quot;5%&quot;>
<input type=&quot;radio&quot; name=&quot;Program_Efficiency&quot; value=&quot;Multimedia&quot;>
</td>
<td width=&quot;95%&quot; align=&quot;right&quot;>
<div align=&quot;left&quot;><b>Multimedia</b> - Minimum skill level:
Proficient in Photoshop</div>
</td>
</tr>
<tr>
<td width=&quot;5%&quot;>
<input type=&quot;radio&quot; name=&quot;Program_Efficiency&quot; value=&quot;3D Animation Principles and Techniques&quot;>
</td>
<td width=&quot;95%&quot; align=&quot;right&quot;>
<div align=&quot;left&quot;><b>3D Animation Principles and Techniques</b>
- Minimum skill level: Proficient in Photoshop</div>
</td>
</tr>
</table>
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td width=&quot;72&quot;> <br>
</td>
<td width=&quot;352&quot; colspan=&quot;3&quot;>
<p>Please identify your skill level of the copmuter applications
and software listed below.<br>
Check each box as appropriate. Complete all sections.<br>
</p>
<table width=&quot;100%&quot; border=&quot;0&quot;>
<tr>
<td width=&quot;36%&quot;><b>9. Skill</b></td>
<td width=&quot;16%&quot;><b>No Experience</b></td>
<td width=&quot;19%&quot;><b>Fundamental Knowledge</b></td>
<td width=&quot;16%&quot;><b>Proficient</b></td>
<td width=&quot;13%&quot;><b>Expert</b></td>
</tr>
<tr>
<td width=&quot;36%&quot;>a. Computer Apps. (PC-based)</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;PC_based&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;PC_based&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;PC_based&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;PC_based&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>b. Computer Apps. (Mac-based) </td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Mac_based&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;Mac_based&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Mac_based&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;Mac_based&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>c. Adobe Photoshop</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Photoshop&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;Photoshop&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Photoshop&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;Photoshop&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>d. Adobe Illustrator</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Illustrator&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;Illustrator&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Illustrator&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;Illustrator&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>e. Adobe Image Ready</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;ImageReady&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;ImageReady&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;ImageReady&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;ImageReady&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>f. Macromedia Dreamweaver</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Dreamweaver&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;Dreamweaver&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Dreamweaver&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;Dreamweaver&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot; height=&quot;2&quot;>g. Macromedia Fireworks</td>
<td width=&quot;16%&quot; height=&quot;2&quot;>
<input type=&quot;radio&quot; name=&quot;Fireworks&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot; height=&quot;2&quot;>
<input type=&quot;radio&quot; name=&quot;Fireworks&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot; height=&quot;2&quot;>
<input type=&quot;radio&quot; name=&quot;Fireworks&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot; height=&quot;2&quot;>
<input type=&quot;radio&quot; name=&quot;Fireworks&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>h. Macromedia Flash</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Flash&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;Flash&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Flash&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;Flash&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>i. HTML</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;HTML&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;HTML&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;HTML&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;HTML&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>j. Java Script</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;JavaScript&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;JavaScript&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;JavaScript&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;JavaScript&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>k. Quark Xpress</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Quark&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;Quark&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;Quark&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;Quark&quot; value=&quot;Expert&quot;>
</td>
</tr>
<tr>
<td width=&quot;36%&quot;>l. Other (please indicate)</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;OtherSkill&quot; value=&quot;No Experience&quot;>
</td>
<td width=&quot;19%&quot;>
<input type=&quot;radio&quot; name=&quot;OtherSkill&quot; value=&quot;Fundamental Knowledge&quot;>
</td>
<td width=&quot;16%&quot;>
<input type=&quot;radio&quot; name=&quot;OtherSkill&quot; value=&quot;Proficient&quot;>
</td>
<td width=&quot;13%&quot;>
<input type=&quot;radio&quot; name=&quot;OtherSkill&quot; value=&quot;Expert&quot;>
</td>
</tr>
</table>
<p>&nbsp; </p>
</td>
</tr>
<tr>
<td valign=&quot;top&quot; width=&quot;72&quot; align=&quot;right&quot;>&nbsp;</td>
<td align=CENTER colspan=4> <br>
<div align=&quot;left&quot;>
<input type=&quot;button&quot; value=&quot;Send&quot; onClick=&quot;validate()&quot; name=&quot;button&quot;>
&nbsp;&nbsp;
<input type=&quot;Reset&quot; name=&quot;Reset&quot;>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>


</body>
</html>

 
dang... Put that in [ignore]
Code:
[/ignore] tags please so I can be sure I get it right. ([ignore][i][/ignore] will get converted to an HTML <i> tag to make text [i]italic[/i] in these forums) [center][img]http://uniment.netfirms.com/bluebrain.gif[/img]  [img]http://uniment.netfirms.com/blueuniment.gif[/img][/center]
 
hey UniMent, I created a hotmail account for our use on this issue, feel free to use it for whatever.

postingground@hotmail.com
postarea

The HTML file is waiting there for you. Netscape will only error check the text fields and won't submit. I appreciate your patients with this one, cheers.
Moogwai
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top