<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<!-- copyright 2007, Developed by Orion3Digital (www.o3d.us) exclusively for HP Think, Inc.  All Rights Reserved -->
<link href="../include/mrb.css" rel=stylesheet>
<title>mybookhead.com - Rent Your Textbooks</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="../include/sysUtil.js"></script>
<script type="text/javascript">
function validateBookstore(){
	x = document.frmRegister;
	if(isRequired(x.BookstoreName)){
		alert("Bookstore name is required.");
		x.BookstoreName.focus();
		return false;
	}	
	if(isRequired(x.BookstoreAddress)){
		alert("Address is required.");
		x.BookstoreAddress.focus();
		return false;
	}	
	if(isRequired(x.City)){
		alert("City is required.");
		x.City.focus();
		return false;
	}	
	if(isRequired(x.State)){
		alert("State is required.");
		return false;
	}	
	if(isRequired(x.Zip)){
		alert("Zip code is required.");
		x.Zip.focus();
		return false;
	}	
	if(!localcheckZip(x.Zip)){
		alert("Please enter a valid Zip Code with only numbers.");	
		x.Zip.select();
		x.Zip.focus();		
		return false;
	}
	if(isRequired(x.ContactFirstName)){
		alert("Contact Person First Name is required.");
		x.ContactFirstName.focus();
		return false;
	}	
	if(isRequired(x.ContactLastName)){
		alert("Contact Person Last Name is required.");
		x.ContactLastName.focus();
		return false;
	}	
	if(isRequired(x.PhoneNumber1)){
		alert("Phone number is required.");
		x.PhoneNumber1.focus();
		return false;
	}	
	if(!onlyNumbers(x.PhoneNumber1)){
		return false;
	}
	if(x.PhoneNumber1.value.length<3){
		alert("Invalid phone number.");
		x.PhoneNumber1.select();
		x.PhoneNumber1.focus();
		return false;
	}
	if(isRequired(x.PhoneNumber2)){
		alert("Phone number is required.");
		oneNumber2.focus();
		return false;
	}	
	if(!onlyNumbers(x.PhoneNumber2)){
		return false;
	}
	if(x.PhoneNumber2.value.length<3){
		alert("Invalid phone number.");
		x.PhoneNumber2.select();
		x.PhoneNumber2.focus();
		return false;
	}
	if(isRequired(x.PhoneNumber3)){
		alert("Phone number is required.");
		x.PhoneNumber3.focus();
		return false;
	}	
	if(!onlyNumbers(x.PhoneNumber3)){
		return false;
	}
	if(x.PhoneNumber3.value.length<4){
		alert("Invalid phone number.");
		x.PhoneNumber3.select();
		x.PhoneNumber3.focus();
		return false;
	}
	if (!emailCheck(x.Email.value)){
		x.Email.focus()
		return false
	}
	if(x.Email.value!=x.ConfirmEmail.value){
		alert("Email addess does not match, please re-enter email.");
		x.ConfirmEmail.select();
		x.ConfirmEmail.focus();
		return false;
	}
	if(isRequired(x.BookstoreUsername)){
		alert("Username is required.");
		x.BookstoreUsername.focus();
		return false;
	}		
	if(x.BookstoreUsername.value.length<5){
		alert("Username is to short, must be 5 characters or more.");
		x.BookstoreUsername.focus();
		return false;
	}
	if(isRequired(x.BookstorePassword)){
		alert("Password is required.");
		x.BookstorePassword.focus();
		return false;
	}
	if(isRequired(x.ConfirmPassword)){
		alert("Confirm Password is required.");
		x.ConfirmPassword.focus();
		return false;
	}
	if(x.BookstorePassword.value!=x.ConfirmPassword.value){
		alert("Passwords do not match, please re-enter passwords.");
		x.ConfirmPassword.select();
		x.ConfirmPassword.focus();
		return false;
	}
	if(x.BookstorePassword.value.length<5){
		alert("Password is to short, must be 5 characters or more.");
		x.BookstoreUsername.focus();
		return false;
	}
	return true;
}
function moveNext1(){
	x = document.frmRegister;
	if(x.PhoneNumber1.value.length==3){
		x.PhoneNumber2.focus();
	}
}
function moveNext2(){
	x = document.frmRegister;
	if(x.PhoneNumber2.value.length==3){
		x.PhoneNumber3.focus();
	}
}
function moveNext3(){
	x = document.frmRegister;
	if(x.PhoneNumber3.value.length==4){
		x.Email.focus();
	}
}
</script>
</head>
<%
	strNew = Request.QueryString("N")
	if strNew = "1" then
		Session("BookstoreName") = ""
		Session("BookstoreAddress") = ""
		Session("BookstoreAddress2") = ""
		Session("City") = ""
		Session("State") = ""
		Session("Zip") = ""
		Session("ContactFirstName") = ""
		Session("ContactLastName") = ""
		Session("PhoneNumber") = ""
		Session("Email") = ""
		Session("URL") = ""
		Session("BookstoreUsername") = ""
		Session("BookstorePassword") = ""
		Session("BankName") = ""
		Session("RouterNumber") = ""
		Session("AccountNumber") = ""
		Session("Sunday_Open") = ""
		Session("Sunday_Closed") = ""
		Session("Monday_Open") = ""
		Session("Monday_Closed") = ""
		Session("Tuesday_Open") = ""
		Session("Tuesday_Closed") = ""
		Session("Wednesday_Open") = ""
		Session("Wednesday_Closed") = ""
		Session("Thursday_Open") = ""
		Session("Thursday_Closed") = ""
		Session("Friday_Open") = ""
		Session("Friday_Closed") = ""
		Session("Saturday_Open") = ""
		Session("Saturday_Closed") = ""
		Session("InstitutionState") = ""
		Session("InstitutionName1") = ""
		Session("InstitutionName2") = ""
		Session("InstitutionName3") = ""
		Session("InstitutionName4") = ""
		Session("InstitutionName5") = ""
	else
		strName = Session("BookstoreName")
		strAddress = Session("BookstoreAddress")
		strAddress2 = Session("BookstoreAddress2")
		strCity = Session("City")
		strState = Session("State")
		strZip = Session("Zip")
		strContactFirstName = Session("ContactFirstName")
		strContactLastName = Session("ContactLastName")
		strPhone = Session("PhoneNumber")
		strEmail = Session("Email")
		strURL = Session("URL")
		strUsername = Session("BookstoreUsername")
		strPassword = Session("BookstorePassword")
		strBank = Session("BankName")
		strRouter = Session("RouterNumber")
		strAccount = Session("AccountNumber")
	end if
	
	Set objConn = Server.CreateObject("ADODB.Connection")
	objConn.Open Application("mybookhead_DataConnection")
	
	strSQL = "SELECT STATEABBR, STATENAME FROM L_STATE ORDER BY STATEABBR;"
	set objState = objConn.Execute(strSQL)
%>
<body onload="preloadImages(); show_clock();">
<table align="center" id="Table_01" width="776" border="0" cellpadding="0" cellspacing="0">
	<tr>
		<td width="3" height="19"><img id="mbh_sub_v21_01" src="../images/mbh_sub_v21_01.gif" width="2" height="19" alt=""></td>
		<td colspan="10"><img id="mbh_sub_v21_02" src="../images/mbh_sub_v21_02.gif" width="773" height="19" alt=""></td>
		<td width="3" height="19"></td>
	</tr>
	<tr>
		<td colspan="3" rowspan="4"><a href="http://www.mybookhead.com" onmouseover="return StatusBar('mybookhead home page');" onmouseout="return StatusBar('Done');"><img src="../images/mbh_sub_v21_03.gif" alt="" width="280" height="56" border="0" id="mbh_sub_v21_03"></a></td>
		<td height="28" colspan="7"><img id="mbh_sub_v21_04" src="../images/mbh_sub_v21_04.gif" width="175" height="28" alt=""></td>
		<td width="320" rowspan="6" valign="top">
			<!-- START User Information -->
			<!-- **************************************************************************** -->
			<%
			select case ucase(Application("InventoryStatus"))
				case "GREEN": 
					strImage = "green"
					strMessage = Application("GreenMessage")
					strLabel = "<font color='#00FF00'> Green </font>"
				case "YELLOW": 
					strImage = "yellow"
					strMessage = Application("YellowMessage")
					strLabel = "<font color='#FFFF00'> Yellow</font>"
				case "ORANGE": 
					strImage = "orange"
				    strMessage = Application("OrangeMessage")
					strLabel = "<font color='#FF9900'> Orange </font>"
				case "RED":  
					strImage = "red"
					strMessage = Application("RedMessage")
					strLabel = "<font color='#FF0000'> Red </font>"
				case else:	 
					strImage = "blue"
					strMessage = Application("BlueMessage")
					strLabel = "<font color='#0000FF'> Blue </font>"
			end select
			Response.Write ("<table background='images/status_" & strImage & ".gif' width='100%' border='0' cellpadding='0' cellspacing='0'>")
			Response.Write (" <!--DWLayoutTable-->")
		  	Response.Write ("	<tr>")
		   Response.Write ("		<td width='320' height='23' valign='top'>")
			Response.Write ("			<table width='100%' border='0' cellpadding='0' cellspacing='0'>")
			Response.Write ("				<tr>")
			Response.Write ("					<td width='9' height='23'>&nbsp;</td>")
			Response.Write ("					<td align='left' valign='middle' nowrap><strong><span class='style1 style10 style15'>Current Status:"& strLabel & "</span></strong></td>")
			Response.Write ("					<td width='140' height='23' align='left' valign='bottom'><script language='javascript' src='../include/liveclock.js'></script></td>")
			Response.Write ("				</tr>")
			Response.Write ("			</table>")
			Response.Write ("		</td>")
			Response.Write ("	</tr>")
			Response.Write ("	<tr>")
			Response.Write ("		<td height='47' valign='top'><br>")
			Response.Write ("			<table width='100%' border='0' cellpadding='0' cellspacing='0'>")
			Response.Write ("				<tr>")
			Response.Write ("					<td width='9' height='23'>&nbsp;</td>")
			Response.Write ("					<td>" & strMessage & "</td>")
			Response.Write ("				</tr>")
			Response.Write ("			</table>")
			Response.Write ("		</td>")
			Response.Write ("	</tr>")
	    	Response.Write ("</table>")
			%>
			</td>
			<!-- END User Information -->
			<!-- **************************************************************************** -->
		<td height="28"></td>
	</tr>
	<tr>
		<td width="52" height="15"><a href="../register.htm" 
				onmouseover="changeImages('mbh_sub_v21_06', '../images/mbh_sub_v21_06-over.gif'); return StatusBar('Register now and get started'); return true;"
				onmouseout="changeImages('mbh_sub_v21_06', '../images/mbh_sub_v21_06.gif'); return StatusBar('Done'); return true;"
				onmousedown="changeImages('mbh_sub_v21_06', '../images/mbh_sub_v21_06-over.gif'); return true;"
				onmouseup="changeImages('mbh_sub_v21_06', '../images/mbh_sub_v21_06-over.gif'); return true;">
				<img name="mbh_sub_v21_06" id="mbh_sub_v21_06" src="../images/mbh_sub_v21_06.gif" width="52" height="15" border="0" alt=""></a></td>
		<td colspan="3"><img id="mbh_sub_v21_07" src="../images/mbh_sub_v21_07.gif" width="27" height="15" alt=""></td>
		<td width="82"><a href="javascript:window.external.AddFavorite('http://mybookhead.com', 'mybookhead.com - Rent Your Textbooks');" 
				onmouseover="changeImages('mbh_sub_v21_08', '../images/mbh_sub_v21_08-over.gif'); return StatusBar('Bookmark mybookhead'); return true;"
				onmouseout="changeImages('mbh_sub_v21_08', '../images/mbh_sub_v21_08.gif'); return StatusBar('Done'); return true;"
				onmousedown="changeImages('mbh_sub_v21_08', '../images/mbh_sub_v21_08-over.gif'); return true;"
				onmouseup="changeImages('mbh_sub_v21_08', '../images/mbh_sub_v21_08-over.gif'); return true;">
				<img name="mbh_sub_v21_08" id="mbh_sub_v21_08" src="../images/mbh_sub_v21_08.gif" width="82" height="15" border="0" alt=""></a></td>
		<td colspan="2"><img id="mbh_sub_v21_09" src="../images/mbh_sub_v21_09.gif" width="14" height="15" alt=""></td>
		<td height="15"></td>
	</tr>
	<tr>
		<td height="11" colspan="7"><img id="mbh_sub_v21_10" src="../images/mbh_sub_v21_10.gif" width="175" height="11" alt=""></td>
		<td height="11"></td>
	</tr>
	<tr>
		<td colspan="3" rowspan="2">
			<a href="../login.htm"
				onmouseover="changeImages('mbh_sub_v21_11', '../images/mbh_sub_v21_11-over.gif'); return StatusBar('Bookstore login page'); return true;"
				onmouseout="changeImages('mbh_sub_v21_11', '../images/mbh_sub_v21_11.gif'); return StatusBar('Done'); return true;"
				onmousedown="changeImages('mbh_sub_v21_11', '../images/mbh_sub_v21_11-over.gif'); return true;"
				onmouseup="changeImages('mbh_sub_v21_11', '../images/mbh_sub_v21_11-over.gif'); return true;">
				<img name="mbh_sub_v21_11" id="mbh_sub_v21_11" src="../images/mbh_sub_v21_11.gif" width="65" height="13" border="0" alt="">
			</a>
	  </td>
		<td width="14" rowspan="2"><img id="mbh_sub_v21_12" src="../images/mbh_sub_v21_12.gif" width="14" height="13" alt=""></td>
		<td colspan="2" rowspan="2">
			<a href="../tell_friend.asp"
				onmouseover="changeImages('mbh_sub_v21_13', '../images/mbh_sub_v21_13-over.gif'); return StatusBar('Tell a friend about mybookhead.com'); return true;"
				onmouseout="changeImages('mbh_sub_v21_13', '../images/mbh_sub_v21_13.gif'); return StatusBar('Done'); return true;"
				onmousedown="changeImages('mbh_sub_v21_13', '../images/mbh_sub_v21_13-over.gif'); return true;"
				onmouseup="changeImages('mbh_sub_v21_13', '../images/mbh_sub_v21_13-over.gif'); return true;">
				<img name="mbh_sub_v21_13" id="mbh_sub_v21_13" src="../images/mbh_sub_v21_13.gif" width="85" height="13" border="0" alt="">
			</a></td>
		<td width="11" rowspan="2"><img id="mbh_sub_v21_14" src="../images/mbh_sub_v21_14.gif" width="11" height="13" alt=""></td>
		<td height="2"></td>
	</tr>
	<tr>
		<td colspan="3" rowspan="2"><img id="mbh_sub_v21_15" src="../images/mbh_sub_v21_15.gif" width="280" height="14" alt=""></td>
		<td height="11"></td>
	</tr>
	<tr>
		<td height="3" colspan="4"><img id="mbh_sub_v21_16" src="../images/mbh_sub_v21_16.gif" width="79" height="3" alt=""></td>
		<td colspan="3"><img id="mbh_sub_v21_17" src="../images/mbh_sub_v21_17.gif" width="96" height="3" alt=""></td>
	</tr>
	<tr>
		<td height="16" colspan="10"><img id="mbh_sub_v21_18" src="../images/mbh_sub_v21_18.gif" width="455" height="16" alt=""></td>
		<td><img id="mbh_sub_v21_19" src="../images/mbh_sub_v21_19.gif" width="320" height="16" alt=""></td>
	</tr>
	<tr>
		<td height="16" colspan="2"><a href="http://www.mybookhead.com"><img src="../images/mbh_sub_v21_20.gif" alt="" width="23" height="16" border="0" id="mbh_sub_v21_20"></a></td>
		<td colspan="3" valign="top">
			<!-- START Menubar -->
			<!-- **************************************************************************** -->
			<table width="100%" border="0" cellpadding="0" cellspacing="0">
			  	<tr>
			    	<td width="85" height="16" valign="top">
				  		<a href="../how_it_works.asp"
							onmouseover="changeImages('mbh_sub_v21_21', '../images/mbh_sub_v21_21-over.gif'); return StatusBar('See how mybookhead works'); return true;"
							onmouseout="changeImages('mbh_sub_v21_21', '../images/mbh_sub_v21_21.gif'); return StatusBar('Done'); return true;"
							onmousedown="changeImages('mbh_sub_v21_21', '../images/mbh_sub_v21_21-over.gif'); return true;"
							onmouseup="changeImages('mbh_sub_v21_21', '../images/mbh_sub_v21_21-over.gif'); return true;">
							<img name="mbh_sub_v21_21" id="mbh_sub_v21_21" src="../images/mbh_sub_v21_21.gif" width="85" height="16" border="0" alt=""></a></td>
					<td width="35" valign="top">
						<a href="../faq.asp"
							onmouseover="changeImages('mbh_sub_v21_22', '../images/mbh_sub_v21_22-over.gif'); return StatusBar('Frequently asked questions about mybookhead.com'); return true;"
							onmouseout="changeImages('mbh_sub_v21_22', '../images/mbh_sub_v21_22.gif'); return StatusBar('Done'); return true;"
							onmousedown="changeImages('mbh_sub_v21_22', '../images/mbh_sub_v21_22-over.gif'); return true;"
							onmouseup="changeImages('mbh_sub_v21_22', '../images/mbh_sub_v21_22-over.gif'); return true;">
							<img name="mbh_sub_v21_22" id="mbh_sub_v21_22" src="../images/mbh_sub_v21_22.gif" width="35" height="16" border="0" alt=""></a></td>
					<td width="118" valign="top">
						<a href="../about.asp"
							onmouseover="changeImages('mbh_sub_v21_23', '../images/mbh_sub_v21_23-over.gif'); return StatusBar('Want to know more about mybookhead.com'); return true;"
							onmouseout="changeImages('mbh_sub_v21_23', '../images/mbh_sub_v21_23.gif'); return StatusBar('Done'); return true;"
							onmousedown="changeImages('mbh_sub_v21_23', '../images/mbh_sub_v21_23-over.gif'); return true;"
							onmouseup="changeImages('mbh_sub_v21_23', '../images/mbh_sub_v21_23-over.gif'); return true;">
							<img name="mbh_sub_v21_23" id="mbh_sub_v21_23" src="../images/mbh_sub_v21_23.gif" width="118" height="16" border="0" alt=""></a></td>
					<td width="74" valign="top">
						<a href="../contact_us.htm"
							onmouseover="changeImages('mbh_sub_v21_24', '../images/mbh_sub_v21_24-over.gif'); return StatusBar('Contact mybookhead '); return true;"
							onmouseout="changeImages('mbh_sub_v21_24', '../images/mbh_sub_v21_24.gif'); return StatusBar('Done'); return true;"
							onmousedown="changeImages('mbh_sub_v21_24', '../images/mbh_sub_v21_24-over.gif'); return true;"
							onmouseup="changeImages('mbh_sub_v21_24', '../images/mbh_sub_v21_24-over.gif'); return true;">
							<img name="mbh_sub_v21_24" id="mbh_sub_v21_24" src="../images/mbh_sub_v21_24.gif" width="74" height="16" border="0" alt=""></a></td>
				</tr>
			</table>
			<!-- END Menubar -->
			<!-- **************************************************************************** -->
		</td>
		<td colspan="6"><img id="mbh_sub_v21_25" src="../images/backend_25.gif" width="440" height="16" alt=""></td>
	</tr>
	<tr>
		<td height="11" colspan="11"><img id="mbh_sub_v21_26" src="../images/rgpg_bs1.gif" width="775" height="75" alt=""></td>
	</tr>
	<tr>
		<td colspan="11" rowspan="2" valign="top">
			<!-- START Main Body -->
			<!-- **************************************************************************** -->
			
			<table background="../images/backend_27.gif" width="100%" border="0" cellpadding="0" cellspacing="0">
			  <!--DWLayoutTable-->
		  		<tr>
		    		<td width="776" height="450" valign="middle">
                    <!-- Main Body Code Here -->
					<form action="bw2.asp" method="post" name="frmRegister" id="frmRegister" onsubmit="return validateBookstore();">
						<center>
						<!-- <font size="+1"><strong>Bookstore Registration</strong><br>1  2  3  4</font><br>-->
						<table align="center" border="0" cellpadding="0" cellspacing="2">
							<tr><td>(All Fields Required)</td><td></td><td></td></tr>
							<tr>
								<td align="right">Bookstore Name:</td>
								<td></td>
								<td align="left"><input class="style11" name="BookstoreName" type="text" size="50" value="<%= strName %>"></td>
							</tr>
							<tr>
								<td align="right">Address:</td>
								<td></td>
								<td align="left"><input class="style11" name="BookstoreAddress" type="text" size="50" value="<%= strAddress %>"></td>
							</tr>
							<tr>
								<td align="right"></td>
								<td></td>
								<td align="left"><input class="style11" name="BookstoreAddress2" type="text" size="50" value="<%= strAddress2 %>"></td>
							</tr>
							<tr>
								<td align="right">City:</td>
								<td></td>
								<td align="left"><input class="style11" name="City" type="text" size="50" value="<%= strCity %>"></td>
							</tr>
							<tr>
								<td align="right">State:</td>
								<td></td>
								<td align="left">
									<select name="State">
									<option value=""></option>
									<%
									if not objState is nothing then
										if not objState.EOF then
											do until objState.EOF
												if strState = objState(0) then
													Response.Write ("<option value='" & trim(objState(0)) & "' selected>" & trim(objState(0)) & "-" & trim(objState(1)) & "</option>")
												else
													Response.Write ("<option value='" & trim(objState(0)) & "'>" & trim(objState(0)) & "-" & trim(objState(1)) & "</option>")
												end if
												objState.MoveNext
											loop
											objState.MoveFirst
										end if
									end if
									%>
									</select>
								</td>
							</tr>
							<tr>
								<td align="right">Zip</td>
								<td></td>
								<td align="left"><input name="Zip" type="text" class="style11" size="10" maxlength="5" value="<%= strZip %>"></td>
							</tr>
							<tr>
								<td align="right">Contact Person:</td>
								<td></td>
								<td align="left"><input name="ContactFirstName" type="text" class="style11" size="25" value="<%= strContactFirstName %>"> (First Name)
								</td>
							</tr>
							<tr>
								<td align="right"></td>
								<td></td>
								<td align="left"><input name="ContactLastName" type="text" class="style11" size="25" value="<%= strContactLastName %>"> (Last Name)
								</td>
							</tr>
							<tr>
								<td align="right">Phone Number:</td>
								<td></td>
								<td align="left">
									<input name="PhoneNumber1" type="text" class="style11" onKeyUp="moveNext1();" value="<%= left(strPhone,3) %>" size="3" maxlength="3">&nbsp;
									<input name="PhoneNumber2" type="text" class="style11" onKeyUp="moveNext2();" size="3" maxlength="3" value="<%= mid(strPhone,4,3) %>"> - 
									<input name="PhoneNumber3" type="text" class="style11" onKeyUp="moveNext3();" size="4" maxlength="4" value="<%= right(strPhone,4) %>">
								</td>
							</tr>
							<tr>
								<td align="right">Email:</td>
								<td></td>
								<td align="left"><input name="Email" type="text" class="style11" size="50" value="<%= strEmail %>"></td>
							</tr>
							<tr>
								<td align="right">Confirm Email:</td>
								<td></td>
								<td align="left"><input name="ConfirmEmail" type="text" class="style11" size="50" value="<%= strEmail %>"></td>
							</tr>
							<tr>
								<td align="right">URL:</td>
								<td></td>
								<td align="left"><input name="URL" type="text" class="style11" size="50" value="http://<%= strURL %>"></td>
							</tr>
							<tr>
								<td align="right">Username:</td>
								<td></td>
								<td align="left"><input name="BookstoreUsername" type="text" class="style11" size="25" value="<%= strUsername %>"> (5 Character Minimum)</td>
							</tr>
							<tr>
								<td align="right">Password:</td>
								<td></td>
								<td align="left"><input name="BookstorePassword" type="password" class="style11" size="25" value="<%= strPassword %>"> (5 Character Minimum)</td>
							</tr>
							<tr>
								<td align="right">Confirm Password:</td>
								<td></td>
								<td align="left"><input name="ConfirmPassword" type="password" class="style11" size="25" value="<%= strPassword %>"></td>
							</tr>
							<tr><td colspan="3" align="center"><br><input class="style11" name="submit" type="submit" value="Continue"></td></tr>
						</table>
						</center>
						<input type="hidden" name="Edit" value="true">
					</form>
						
					<!-- END Main Body -->
					</td>
           		</tr>
	    	</table>
			
			
			<!-- **************************************************************************** -->
		</td>
	</tr>
	<tr><td height="1"></td></tr>
	<tr>
		<td height="7" colspan="11"><img id="mbh_sub_v21_29" src="../images/backend_29.gif" width="775" height="7" alt=""></td>
		<td height="7"></td>
	</tr>
	<tr>
		<td height="26" colspan="11" valign="top">
			<table background="../images/mbh_sub_v21_30.gif" width="100%" border="0" cellpadding="0" cellspacing="0">
		  		<tr>
		    		<td width="776" height="26" align="center" valign="middle"><span class="style3"><a href="http://www.mybookhead.com"  onmouseover="return StatusBar('mybookhead home page');" onmouseout="return StatusBar('Done');">Home</a> | <a href="../how_it_works.asp" onmouseover="return StatusBar('See how mybookhead works');" onmouseout="return StatusBar('Done');">How it Works</a> | <a href="../faq.asp" onmouseover="return StatusBar('Frequently asked question bout mybookhead.com');" onmouseout="return StatusBar('Done');">FAQ</a>  | <a href="../contact_us.asp" onmouseover="return StatusBar('Contact mybookhead');" onmouseout="return StatusBar('Done');">Contact</a> | <a href="../contact_us.asp" onmouseover="return StatusBar('Contact mybookhead about advertising');" onmouseout="return StatusBar('Done');">Advertise</a> | <a href="#" onmouseover="return StatusBar('Careers at mybookhead.com');" onmouseout="return StatusBar('Done');">Careers</a> | <a href="../register.htm" onmouseover="return StatusBar('Register now and get started');" onmouseout="return StatusBar('Done');">Register</a> | <a href="../login.htm" onmouseover="return StatusBar('Login Page');" onmouseout="return StatusBar('Done');"> Login </a></span></td>
	      		</tr>
	    	</table>
		</td>
	</tr>
	<tr>
		<td height="1" width="2"></td>
		<td width="21" height="1"></td>
		<td width="257" height="1"></td>
		<td width="52" height="1"></td>
		<td width="3" height="1"></td>
		<td width="10" height="1"></td>
		<td width="14" height="1"></td>
		<td width="82" height="1"></td>
		<td width="3" height="1"></td>
	</tr>
	<tr>
		<td height="20" colspan="12" valign="top" align="center">
			<span class="style9">Powered by<strong> </strong><a href="#" onmouseover="return StatusBar('HP Think');" onmouseout="return StatusBar('Done');"><strong>HP Think</strong></a><span class="style10"> -</span> Copyright &copy; 2007 mybookhead<span class="style10">- </span><a href="../privacy.asp" onmouseover="return StatusBar('Privacy policy for mybookhead.com');" onmouseout="return StatusBar('Done');">Privacy Statement</a></span>
		</td>
  	</tr>
</table>
<%
	objConn.Close
%>
</body>
</html>
