function printForm_no_id(){
document.write('   <table width="600" border="0" cellpadding="0" cellspacing="0">');
document.write('	      <tr>');
document.write('			         <td valign="top" class="G10">');
document.write('						            <strong><span class="L14">Still having trouble?</span></strong>');
document.write('											<br><br>');
document.write('				If you\'re still having trouble using the using the Apple Store, let us know. We respond to requests in the order they are received, and will contact you within 24 hours. Be sure to include your web order number if you\'re having trouble with a specific purchase.');
document.write('				<br>');
document.write('				<br>');
document.write('				<a name="form"> </a>');
document.write('					<form name="email" action="http://depot.info.apple.com/request/" method="POST" onsubmit="return validate(this)">');
document.write('					<table border="0" cellpadding="0" cellspacing="0" width="400" valign="TOP">');
document.write('						<tr>');
document.write('							<td class="G10" valign="top"height="30px"><b>First Name:<span style="color: #F00">*</span> </td>');
document.write('							<td valign="top"><input name="fname" type="TEXT" class="form250" value="" size="25"></td>');
document.write('						</tr>');
document.write('						<tr>');
document.write('							<td class="G10" valign="top" height="30px"><b>Last Name:<span style="color: #F00">*</span> </td>');
document.write('							<td valign="top"><input name="lname" type="TEXT" class="form250" value="" size="25"></td>');
document.write('						</tr>');
document.write('						<tr>');
document.write('							<td class="G10" valign="top"height="30px"><b><nobr>Email Address:<span style="color: #F00">*</span> </nobr>&nbsp;</td>');
document.write('							<td class="G10" valign="top"><input name="accountname" type="TEXT" class="form250" value="" size="25"</td>');
document.write('						</tr>');
document.write('						<tr>');
document.write('							<td colspan="2"><img src="http://images.apple.com/support/store/elements/spacer.gif" height="13" width="138" height="2"></td>');
document.write('							<td>&nbsp;</td>');
document.write('						</tr>');
document.write('					</table>');
document.write('					<table border="0" cellpadding="0" cellspacing="0" width="400" valign="TOP">');
document.write('						<tr>');
document.write('							<td height="50" align="left" valign="top" class="G10">');
document.write('								<b>Specific Request:<span style="color: #F00">*</span></b>');
document.write('								<br>');
document.write('								<select name="category" class="form250">');
document.write('								<option value="" selected>');
document.write('								-- Choose One --');
document.write('								</option>');
for (i=1 ; i < printForm_no_id.arguments.length ; i++) {
	document.write("								<option value=\"" + printForm_no_id.arguments[i] + "\">");
	document.write("								" + printForm_no_id.arguments[i]);
	document.write('								</option>');
}
document.write('								</select>&nbsp;');
document.write('							</td>');
document.write('							<td width="10">');
document.write('								&nbsp;');
document.write('							</td>');
document.write('							<td align="left" valign="top" class="G10">');
document.write('								<b>Web Order Number</b>');
document.write('								<br>');
document.write('								<input name="subject2" type="TEXT" class="form250" value="" size="20">');
document.write('							</td>');
document.write('						</tr>');
document.write('						<tr>');
document.write('							<td colspan="3" class="G10">');
document.write('								<b>Comments:</b><span style="color: #F00">*</span>');
document.write('								<br>');
document.write('								<textarea name="body" cols="70" rows="6" class="form600"></textarea>');
document.write('							</td>');
document.write('						</tr>');
document.write('						<tr>');
document.write('							<td align="center" colspan="3">');
document.write('								<div align="right">');
document.write('									<input type="HIDDEN" name="returnurl" value="http://www.apple.com/support/store/thankyou.html">');
document.write('									<input type="HIDDEN" name="subject1" value="' + printForm_no_id.arguments[0] + '">');
document.write('									<input type="HIDDEN" name="program" value="us_store">');
document.write('									<a href="javascript:void(validate(document.email));"><img src="http://images.apple.com/support/store/elements/sendquestion.gif" width="120" height="28" border="0"></a>');
document.write('								</div>');
document.write('							</td>');
document.write('						</tr>');
document.write('					</table>');
document.write('				</form>');
document.write('	<p align="left"><span style="color: #F00">*</span> <span class="G10G">Indicates required field.</p><br>');
document.write('			</td>');
document.write('		</tr>');
document.write('	</table>');
}

function validate(form) {
  var pulldown     = form.category.options[form.category.selectedIndex].value;  
  var bodytext     = form.body.value;   
  var fname        = form.fname.value;   
  var lname        = form.lname.value;   
  var email        = form.accountname.value;   

  if (!pulldown || !bodytext || !fname || !lname || !email) {
    alert("Please fill in all required fields\nbefore submitting the form. \n\nThank You!");
    return false;
  }

	form.submit();
	return true;
}
