Advertisement
Advertisement
| 09.05.2008 at 10:47AM PDT, ID: 23707108 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: |
<script LANGUAGE="JavaScript">
<!-- Begin
function checkEmail(myForm) {
if(!myForm.cert.checked) {
alert("Please choose a certification type.");
return false;}
if (myForm.fname.value == ""){
alert("First name is required");
myForm.fname.focus();
return false;}
if (myForm.lname.value == ""){
alert("Last name is required");
myForm.lname.focus();
return false;}
if (myForm.amount.value == ""){
alert("Amount is required");
myForm.amount.focus();
return false;}
if (myForm.email.value == ""){
alert("Email is required");
myForm.email.focus();
return false;}
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email.value)){
return (true)
}
alert("Invalid E-mail Address! Please re-enter.")
myForm.email.focus();
return (false)
}
//put this in the <form> tag
//
// End -->
</script>
<form method="post" onSubmit="return checkEmail(this)">
<table style="border-style:inset; border-width:medium" width="100%">
<tr><td colspan=2 align="center"><font color="#CC0000">*</font> denotes a required field</td></tr>
<tr><td><font color="#CC0000">*</font>Certification Type<td>Please check all that apply<br>
<input type="checkbox" name="cert" value="CMC">CMC <input type="checkbox" name="cert" value="CMIS">CMIS <input type="checkbox" name="cert" value="CMOM">CMOM</td></td></tr>
<tr><td><font color="#CC0000">*</font>First Name<td><input type="text" name="fname" size=40></td></td></tr>
<tr><td><font color="#CC0000">*</font>Last Name<td><input type="text" name="lname" size=40></td></td></tr>
<tr><td>Certification ID Number<br><span style="font-size:10px">(preferred but not required)</span><td><input type="text" name="certid" size=40></td></td></tr>
<tr><td><font color="#CC0000">*</font>Amount Paid<td>
<select name="amount">
<option selected>Select amount</option>
<option value="75">$75.00 for one</option>
<option value="125">$125.00 for two</option>
<option value="150">$150.00 for all three</option>
</select></td></td></tr>
<tr><td><font color="#CC0000">*</font>Email Address<td><input type="text" name="email" size=40></td></td></tr>
<tr><td><td><input type=submit value="Pay Securely with Credit Card" name=btRenew > <input type=reset value=Reset></td></tr>
</table>
|