Only Show This Image If… (Full Version)

All Forums >> [Web Development] >> ASP and Database



Message


evanesnard -> Only Show This Image If… (6/13/2006 10:33:25)

I could use some help writing a line of ASP code that you might refer to as an IF/THEN statement. Or perhaps there's even a better way to do this.

Let me explain what we’re trying to achieve. In our database, we capture a piece of customer-provided information called “Payment Accepted”. This is simply the forms of payment that our advertising customers accept for their sales/services. The choices are MasterCard, Visa, American Express, Discover, Debit Card, and eCheck. Our advertising customer selects any of these options with individual checkboxes corresponding to each form of payment accepted. Upon submission of their signup form, all of the selections are recorded in one DB field named Payment_Accepted in a comma delimited string. This currently works great.

Now, when someone views the customer’s Display Ad, what we’re looking to do is only display the individual specific credit card, debit card, and eCheck logos corresponding to the specific payment options the customer has selected. So, if they have only selected MasterCard and Visa, only the MasterCard and the Visa logos would be displayed.

So it seems like I need some sort of code that basically says something like "If Payment_Accepted contains MasterCard, then show MasterCard image, If Payment_Accepted contains Visa, then show Visa image", and so on.

Any help on this would be greatly appreciated. Thanks in advance for your help.




rdouglass -> RE: Only Show This Image If… (6/13/2006 10:50:18)

quote:

If Payment_Accepted contains MasterCard, then show MasterCard image


If Instr(Payment_Accepted,"MasterCard") > 0 THEN
response.write("<img src='images/mastercard.jpg'>")
end if
...

That help any?




evanesnard -> RE: Only Show This Image If… (6/13/2006 10:59:45)

Thanks, I ran the following code but got the followiing error.

I ran:
<%
If
Instr(Payment_Accepted,"Mastercard") > 0 THEN
response.write("<img src='images/Credit_Cards.jpg'>")
end if
%>

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

I have a few questions on that piece of code.

1) the page where I need to display the image is a single dynamic ASP page that runs a DRW to display a unique Ad for a unique customer. This page is used to display any customer's ad. Does the code need to say something like for "this Ad_ID"? I.E. my URL for that page in this instance reads http://www.mydomain.com/Ad.asp?Ad_ID=15
It seems like we need to define somewhere in the code which Ad we want to check DB column Payment_Accepted for Mastercard.

2) where you stated img src: do I have to put the entire path such as http://www.mydomain.com/images or literally the way you wrote it as img src?

3) to look for Visa and other forms of payment: do I simply create a separate instance of code such as this one for each form of payment that I want to check for?

4) where do I put the ASP code symbols <% %> in that statement to designate it as ASP code?

5) does it matter where on the page I insert this code? Would it be relative to exactly where I want the image to be displayed? If not, how is the desired image location defined?

Thanks.




Spooky -> RE: Only Show This Image If… (6/13/2006 16:12:15)

For trouble shooting, be sure to read this thread :
http://www.frontpagewebmaster.com/m-235653/tm.htm

The script should read :
<%
If Instr(Payment_Accepted,"Mastercard") > 0 THEN
response.write("<img src='images/Credit_Cards.jpg'>")
end if
%> 




evanesnard -> RE: Only Show This Image If… (6/13/2006 16:57:52)

Thanks Spooky. I've entered the code below. The page is loading and displaying fine, the image just isn't displaying. I confirmed that the image is spelled just as below with .jpg extension and that the image is in fact in the images directory on the server.

Data in the Payment_Accepted field for this particular Ad in the DB looks like this:

Mastercard, Visa, American Express, Discover, Debit Card, ECheck

Do you have any ideas why it's not displaying the image? Thanks.

<%
If Instr(Payment_Accepted,"Mastercard") > 0 THEN
response.write("<img src='images/Credit_Cards.jpg'>")
end if
%>






Spooky -> RE: Only Show This Image If… (6/13/2006 17:01:58)

It will be relative to the directory it is placed in.
I prefer to use an absolute path like so :

response.write("<img src=""/images/Credit_Cards.jpg"">")

This file will *always* be found in the images folder that resides directly off the root folder




evanesnard -> RE: Only Show This Image If… (6/13/2006 17:13:31)

Here's the code I've entered now and I'm still not getting the image displayed. I also verified that my image folder is directly off the root of the site.

<%
If Instr(Payment_Accepted,"Mastercard") > 0 THEN
response.write("<img src=""/images/Credit_Cards.jpg"">")
end if
%>


Got a question for you. How does the code know which table in the DB to go look at and which row in that table to look at to even look for a Mastercard value?




Spooky -> RE: Only Show This Image If… (6/13/2006 17:27:23)

Where does this come from? "Payment_Accepted"
Does it exist as a variable on this page? If not, there lays the problem.

I would expect "Payment_Accepted" to exist as a variable containing the comma delimited list of accepted payments




evanesnard -> RE: Only Show This Image If… (6/13/2006 17:34:57)

No, it's not a variable on the page. Sorry about that Spooky. I had provided those details further up in the beginning of the thread but I think that was before you began helping me out on this. Sorry.

Payment_Accepted is a column in the Ads table in the DB. Payment_Accepted records about 10 different payment options as a single comma delimited string. Each row in the Ads table of course being a unique Ad with unique comma delimited data in the Payment_Accepted column recorded to usually look something like:

Mastercard, Visa, American Express, Discover, Debit Card, ECheck

I have ran a DRW on this page to display various other data for the record, and part of that data being displayed is the comma delimited value in the Payment_Accepted column. Is that a resource from which we can get what we need or do we go about it a different way?





Spooky -> RE: Only Show This Image If… (6/13/2006 18:39:35)

If its one of the fields being queried, then it should be able to be used.

eg Payment_Accepted = fp_field(fp_rs,"Payment_Accepted")




evanesnard -> RE: Only Show This Image If… (6/13/2006 19:00:47)

Correct. I've already got that data displayed on the page in the form of the comma delimited text string that recorded in the Payment_Accepted column for that specific Ad.

Perhaps I'm misunderstanding your instructions but what I'm trying to do is display an image based on what data is recorded in the Payment_Accepted column for this specific Ad.

Eg - I need to look at the Payment_Accepted column in the Ad table in the DB. If Mastercard exists in the comma-delimited string in the Payment_Accepted column, then display the Mastercard.jpg...

then the same thing for Visa, and Amex, and Discover, etc.




Spooky -> RE: Only Show This Image If… (6/13/2006 19:54:54)

Yes, if you have done as suggested above, and the variable exists, you can then carry on with the code to display the images.
eg :

<%
If Instr(Payment_Accepted,"Mastercard") > 0 THEN
response.write("<img src='images/Credit_Cards.jpg'>")
end if
%>
<%
If Instr(Payment_Accepted,"Visa") > 0 THEN
response.write("<img src='images/Credit_Cards.jpg'>")
end if
%>






evanesnard -> RE: Only Show This Image If… (6/13/2006 20:11:47)

I'm sorry but I must be missing something Spooky.

I've got a DRW and in that DRW the value in the Payment_Accepted data column is being displayed with:

<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Payment_Accepted" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Payment_Accepted<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Payment_Accepted")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="38106" -->


Then, elsewhere in the same page, I've got:

<%
If Instr(Payment_Accepted,"Mastercard") > 0 THEN
response.write("<img src='images/Credit_Cards.jpg'>")
end if
%>


I've also tried:

<%
If Instr(Payment_Accepted,"Mastercard") > 0 THEN
response.write("<img src=""/images/Credit_Cards.jpg"">")
end if
%>


But...I still don't get the image displayed. I'm not sure what I'm missing. Thanks for sticking with me on this.




Spooky -> RE: Only Show This Image If… (6/13/2006 20:25:06)

Can you display your code from the DRW?




evanesnard -> RE: Only Show This Image If… (6/13/2006 20:46:13)

Yep. Here it is. Let me explain the flow of the process real quick in case this may make a difference.

I start at a page called Account_Management.asp that has the following DRW. (THIS IS NOT THE PAGE I"M TRYING TO DISPLAY THE IMAGE ON)

<%
fp_sQry="SELECT * FROM Ads WHERE (Disposition = 'Approved') AND UserID=" & Session("UserID") & " ORDER BY Action_Last_Date ASC"
fp_sDefault=""
fp_sNoRecords="<tr><td colspan=10 align=""CENTER"" width=""100%"">You currently do not have any Active Ads.</td></tr>"
fp_sDataConn="Signup"
fp_iMaxRecords=256
fp_iCommandType=1
fp_iPageSize=0
fp_fTableFormat=True
fp_fMenuFormat=False
fp_sMenuChoice=""
fp_sMenuValue=""
fp_sColTypes="&UserID=202&UserName=202&Password=202&x_Firstname=202&x_Lastname=202&x_Country=202&x_City=202&x_Email=202&Advertiser_ID=202&Action_Last=202&Action_Last_Date=135&Action_Last_UserID=202&Action_History=203&Action_History_Date=203&Action_History_UserID=203&Disposition=202&Ad_Status=202&Ad_ID=3&Ad_Country=202&Ad_State=202&Ad_City=202&Ad_Category=202&Ad_Category_Details=202&Business_or_Individual=202&Company_Name=202&Individual_Name=202&Company_Formed=202&Business_Hours=202&Business_Address=202&Business_Country=202&Business_State=202&Business_City=202&Business_Zip_Code=202&Service_Type=202&Service_Details=202&Service_Area=202&Service_Qualifications=202&Service_Degrees_Certifications=202&Service_References=202&Rates=202&Payment_Terms=202&Payment_Accepted=202&Payment_Accepted_Comments=202&Contact_First_Name=202&Contact_Last_Name=202&Contact_Country=202&Contact_State=202&Contact_City=202&Contact_Zip_Code=202&Contact_Phone_1=202&Contact_Phone_2=202&Contact_Pager=202&Contact_Pager_PIN=202&Contact_Email=202&Contact_IM=202&Contact_Website=202&Contact_Time=202&Terms_Of_Use=202&Remote_computer_name=202&User_name=202&Browser_type=202&Timestamp=135&"
fp_iDisplayCols=10
fp_fCustomQuery=False
BOTID=0
fp_iRegion=BOTID
%>


I click on a hyperlink called "View" and it takes me to the page you and I have been working on called Ad.asp.

Ad.asp displays all the details of a specific Ad that we clicked on from the Account_Management.asp page.

Ad.asp is the page I'm trying to display the image on.

The DRW for Ad.asp is:

<%
fp_sQry="SELECT * FROM Ads WHERE (Ad_ID =  ::Ad_ID::)"
fp_sDefault="Ad_ID=0"
fp_sNoRecords="No records returned."
fp_sDataConn="Signup"
fp_iMaxRecords=256
fp_iCommandType=1
fp_iPageSize=0
fp_fTableFormat=False
fp_fMenuFormat=False
fp_sMenuChoice="Ad_Category"
fp_sMenuValue="Ad_Category"
fp_sColTypes="&Ad_ID=3&Account_Name=202&Account_Country=202&Account_State=202&Account_City=202&Account_Zip_Code=202&Account_Phone_1=202&Account_Phone_2=202&Account_Email=202&User_ID=202&Password=202&Password_Verification=202&Security_Question=202&Security_Answer=202&Ad_Country=202&Ad_State=202&Ad_City=202&Ad_Category=202&Ad_Category_Details=202&Business_or_Individual=202&Company_Name=202&Individual_Name=202&Company_Formed=202&Business_Hours=202&Business_Address=202&Business_Country=202&Business_State=202&Business_City=202&Business_Zip_Code=202&Service_Type=202&Service_Details=202&Service_Area=202&Service_Qualifications=202&Service_Degrees_Certifications=202&Service_References=202&Rates=202&Payment_Terms=202&Payment_Accepted=202&Payment_Accepted_Comments=202&Contact_First_Name=202&Contact_Last_Name=202&Contact_Country=202&Contact_State=202&Contact_City=202&Contact_Zip_Code=202&Contact_Phone_1=202&Contact_Phone_2=202&Contact_Pager=202&Contact_Pager_PIN=202&Contact_Email=202&Contact_IM=202&Contact_Website=202&Contact_Time=202&Terms_Of_Use=202&Remote_computer_name=202&User_name=202&Browser_type=202&Timestamp=135&"
fp_iDisplayCols=39
fp_fCustomQuery=False
BOTID=0
fp_iRegion=BOTID
%>






Spooky -> RE: Only Show This Image If… (6/13/2006 21:07:22)

Can you show the rest of the code tht follows ad.asp? The important parts are missing [;)]




evanesnard -> RE: Only Show This Image If… (6/13/2006 21:10:55)

Sorry about that. Here's all the code on the Ad.asp page that follows the DRW code I previously sent.

<!--#include file="_fpclass/fpdbrgn1.inc"-->
<!--webbot bot="DatabaseRegionStart" endspan i-checksum="46030" --><p style="margin-top: 0; margin-bottom: -3px">
			<img border="0" src="Images/feather%20-%20blue.gif" width="57" height="11" vspace="2" align="middle"><font face="Arial Black" color="#000080">
			</font></p>
			<p style="margin-top: 0; margin-bottom: 0">
			<font face="Arial Black" style="font-size: 11pt" color="#CC0000">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Ad_Category" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Ad_Category<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_FieldVal(fp_rs,"Ad_Category")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="29895" --></font><font face="Arial Black" color="#CC0000"><span style="font-size: 11pt"> 
			In </span></font>
			<font face="Arial Black" style="font-size: 11pt" color="#CC0000">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Ad_City" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Ad_City<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_FieldVal(fp_rs,"Ad_City")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="12124" --></font><font face="Arial Black" color="#CC0000"><span style="font-size: 11pt">, </span></font>
			<font face="Arial Black" style="font-size: 11pt" color="#CC0000">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Ad_State" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Ad_State<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_FieldVal(fp_rs,"Ad_State")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="14275" --></font><font face="Arial Black" color="#CC0000"><span style="font-size: 11pt">, 
			</span></font>
			<font face="Arial Black" style="font-size: 11pt" color="#CC0000">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Ad_Country" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Ad_Country<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_FieldVal(fp_rs,"Ad_Country")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="30726" --> </font>
			<font face="Arial Black" color="#CC0000">
			<span style="font-size: 11pt">By </span></font>
			<font color="#CC0000" face="Arial Black" style="font-size: 11pt">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_First_Name" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_First_Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_First_Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="52559" --></font><font face="Arial" style="font-size: 9pt">  </font>
			<font color="#CC0000" face="Arial Black" style="font-size: 11pt">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Last_Name" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Last_Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_Last_Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="42905" --></font><font face="Arial Black" color="#000080"><img border="0" src="Images/title_line%20-%20blue.gif" width="100" height="5"></font></td>
			<td width="5" height="63" rowspan="2"> </td>
			<td width="161" height="63" rowspan="2" valign="top" bgcolor="#F5F4EE" align="center">
			<p style="margin-top: 3px; margin-bottom: 0"><font face="Arial">
						<b>
			<iframe name="I5" src="Support%20Pages/Breakout%202.htm" marginwidth="1" marginheight="1" height="300" width="155" scrolling="no" border="0" frameborder="0">
			Your browser does not support inline frames or is currently configured not to display inline frames.
			</iframe></b></font></p>
			<p> </p>
			<p> </td>
		</tr>
		<tr>
			<td width="600" height="250" valign="top">
			<p align="center" style="margin-top: 10px; margin-bottom:10px">
			<img border="0" src="Customer%20Photos/Evan%20Esnard.jpg" width="74" height="106"></p>
			<p align="center" style="margin-top: 10px; margin-bottom:10px">
			 
<%
If Instr(Payment_Accepted,"Mastercard") > 0 THEN
response.write("<img src=""/Images/Credit_Cards.jpg"">")
end if
%></p>
			<p align="center" style="margin-top: 10px; margin-bottom: 10px"><b>
			<font face="Arial" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_First_Name" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_First_Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_First_Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="52559" --> 
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Last_Name" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Last_Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_Last_Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="42905" --></font></b></p>
			<p align="center" style="margin-top: 10px; margin-bottom: 10px"><b>
			<font face="Arial" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Company_Name" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Company_Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Company_Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="28973" --></font></b></p>
			<p align="center" style="margin-top: 0; margin-bottom: 0">
			 </p>
			<p align="center" style="margin-top: 0; margin-bottom: -5px">
			<font color="#145C9E" size="1"><span style="font-family: Arial">
			<a href="#Ad"><span style="text-decoration: none">Ad</span></a>  
			| 
			<a href="#Services"><span style="text-decoration: none">Services
			</span></a> |  <a href="#Rates">
			<span style="text-decoration: none">Rates & Payment </span></a> | 
			<a href="#Contact"><span style="text-decoration: none">Contact 
			Information</span></a></span></font></p>
			<p align="center" style="margin-top: 0; margin-bottom: 0">
			 </p>
			<div align="center">
				<table border="0" cellpadding="0" style="border-collapse: collapse" width="400" bordercolorlight="#808080" bordercolordark="#808080">
					<tr>
						<td align="left" nowrap colspan="2" height="20" bgcolor="#145C9E">
						<p align="center" style="margin-top: 3px; margin-bottom: 3px">
						<b>
						<font face="Arial" style="font-size: 11pt" color="#FFFFFF">
						<a name="Ad"></a>Profile</font></b></td>
					</tr>
					<tr>
						<td align="left" nowrap colspan="2" height="15" bgcolor="#FFFFFF">
						<p align="center"> </td>
					</tr>
					<tr>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">
						ASA Advertiser</font></b><font face="Arial" style="font-size: 9pt"><b> 
						Since:  </b></font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Timestamp" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Timestamp<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_FieldVal(fp_rs,"Timestamp")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="20579" --></font></td>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<b>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
						ASA</font></b><font color="#145C9E"><b><font face="Arial" style="font-size: 9pt">
						Ad</font></b><font face="Arial" style="font-size: 9pt"><b> 
						ID: 
						</b></font></font>
			<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Ad_ID" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Ad_ID<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_FieldVal(fp_rs,"Ad_ID")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="6694" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">Company or 
						Individual:</font></b><font face="Arial" style="font-size: 9pt"><b> </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Business_or_Individual" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Business_or_Individual<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Business_or_Individual")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="5360" --></font></td>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<b>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
						Year Company Formed: </font></b>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Company_Formed" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Company_Formed<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Company_Formed")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="40598" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">Company 
						Name:</font></b><font face="Arial" style="font-size: 9pt"><b> </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Company_Name" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Company_Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Company_Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="28973" --></font></td>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">Individual 
						Name:</font></b><font face="Arial" style="font-size: 9pt"><b> </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Individual_Name" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Individual_Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Individual_Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="40528" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">Business 
						Hours:</font></b><font face="Arial" style="font-size: 9pt"><b> </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Business_Hours" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Business_Hours<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Business_Hours")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="38611" --></font></td>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">Business 
						Address:</font></b><font face="Arial" style="font-size: 9pt"><b> </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Business_Address" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Business_Address<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Business_Address")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="38503" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">Business 
						City:</font></b><font face="Arial" style="font-size: 9pt"><b> </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Business_City" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Business_City<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Business_City")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="30991" --></font></td>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">Business 
						State:</font></b><font face="Arial" style="font-size: 9pt"><b> </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Business_State" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Business_State<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Business_State")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="39880" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">Business 
						Zip Code:</font></b><font face="Arial" style="font-size: 9pt"><b> </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Business_Zip_Code" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Business_Zip_Code<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Business_Zip_Code")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="44434" --></font></td>
						<td align="left" nowrap height="20" bgcolor="#FFFFFF">
						<font color="#145C9E">
						<b><font face="Arial" style="font-size: 9pt">Business 
						Country:</font></b><font face="Arial" style="font-size: 9pt"><b> </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Business_Country" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Business_Country<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Business_Country")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="39084" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap colspan="2" height="20" bgcolor="#FFFFFF">
						 </td>
					</tr>
					<tr>
						<td align="left" nowrap colspan="2" height="20" bgcolor="#145C9E">
						<p align="center" style="margin-top: 3px; margin-bottom: 3px"><b>
						<font face="Arial" style="font-size: 11pt" color="#FFFFFF">
						<a name="Services"></a>Services</font></b></td>
					</tr>
					<tr>
						<td align="left" nowrap colspan="2" height="15" style="margin-left: 0; margin-top: 0; margin-bottom: 0">
						<p align="center"></td>
					</tr>
					<tr>
						<td align="justify" nowrap colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font color="#145C9E"><b>
						<font face="Arial" style="font-size: 9pt">Type of 
						Services:  </font></b>
						</font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Service_Type" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Service_Type<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Service_Type")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="31817" --></font></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Details of Services: 
						</b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Service_Details" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Service_Details<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Service_Details")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="36823" --></font></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Areas I Serve:</b>  
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Service_Area" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Service_Area<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Service_Area")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="29686" --></font></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Qualifications:</b></font><b><font face="Arial" style="font-size: 9pt" color="#145C9E"> 
						</font></b>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Service_Qualifications" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Service_Qualifications<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Service_Qualifications")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="3523" --></font></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font color="#145C9E" face="Arial" style="font-size: 9pt"><b>
						Professional Degrees or Certifications Relevant To My 
						Service:  </b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Service_Degrees_Certifications" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Service_Degrees_Certifications<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Service_Degrees_Certifications")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="24315" --></font></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font color="#145C9E" face="Arial" style="font-size: 9pt"><b>
						References: 
						</b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Service_References" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Service_References<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Service_References")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="54215" --></font></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt">
						<font color="#145C9E"><b>Resume: 
						</b></font><a href="Customer%20Resumes/Evan_Esnard_Resume.pdf">
						<span style="text-decoration: none">Click here to see my 
						resume</span></a></font></td>
					</tr>
					<tr>
						<td align="left" nowrap width="600" colspan="2" height="15"></td>
					</tr>
					<tr>
						<td align="left" nowrap width="600" colspan="2" height="20" bgcolor="#145C9E">
						<p align="center" style="margin-top: 3px; margin-bottom: 3px"><b>
						<font face="Arial" style="font-size: 11pt" color="#FFFFFF">
						<a name="Rates"></a>Rates & Payment</font></b></td>
					</tr>
					<tr>
						<td align="left" nowrap width="600" colspan="2" height="15"></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						My Rates: 
						</b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Rates" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Rates<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Rates")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="7663" --></font></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Payment Terms:  </b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Payment_Terms" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Payment_Terms<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Payment_Terms")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="32372" --></font></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Forms Of Payment Accepted:  </b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Payment_Accepted" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Payment_Accepted<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Payment_Accepted")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="38106" --></font></td>
					</tr>
					<tr>
						<td align="justify" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px" align="justify">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Comments Regarding Forms Of Payment Accepted:  </b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Payment_Accepted_Comments" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Payment_Accepted_Comments<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Payment_Accepted_Comments")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="64297" --></font></p>
						<p style="margin-top: 5px; margin-bottom: 5px" align="center">
			<font color="#145C9E">
			<img border="0" src="Images/Credit%20Cards.jpg" width="209" height="29"></font></td>
					</tr>
					<tr>
						<td align="left" nowrap width="600" colspan="2" height="20">
						<p align="center"></td>
					</tr>
					<tr>
						<td align="left" nowrap width="600" colspan="2" height="20" bgcolor="#145C9E">
						<p align="center" style="margin-top: 3px; margin-bottom: 3px"><b>
						<font face="Arial" style="font-size: 11pt" color="#FFFFFF">
						<a name="Contact"></a>Contact Information </font></b></td>
					</tr>
					<tr>
						<td align="left" nowrap width="600" colspan="2" height="20"> </td>
					</tr>
					<tr>
						<td align="left" nowrap width="600" height="20" colspan="2">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Name:</b>  
						<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_First_Name" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_First_Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_First_Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="52559" --> 
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Last_Name" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Last_Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_Last_Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="42905" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px"><b>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
						City:  </font></b>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_City" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_City<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_City")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="29181" --></font></td>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font color="#145C9E"><b>
						<font face="Arial" style="font-size: 9pt">State:</font></b><font face="Arial" style="font-size: 9pt"><b>  </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_State" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_State<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_State")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="35028" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font color="#145C9E"><b>
						<font face="Arial" style="font-size: 9pt">Zip Code:</font></b><font face="Arial" style="font-size: 9pt"><b>  </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Zip_Code" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Zip_Code<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_Zip_Code")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="41130" --></font></td>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font color="#145C9E"><b>
						<font face="Arial" style="font-size: 9pt">Country:</font></b><font face="Arial" style="font-size: 9pt"><b>  </b>
						</font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Country" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Country<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_Country")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="38710" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Phone 1: 
						</b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Phone_1" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Phone_1<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_Phone_1")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="37276" --></font></td>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Phone 2: 
						</b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Phone_2" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Phone_2<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_Phone_2")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="37292" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Pager: </b> 
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Pager" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Pager<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_Pager")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="32432" --></font></td>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Pager PIN:  </b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Pager_PIN" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Pager_PIN<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Contact_Pager_PIN")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="40435" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt">
						<font color="#145C9E"><b>Email: 
						</b></font>
						<a href="mailto:<%=FP_FieldVal(fp_rs,"Contact_Email")%>" style="text-decoration: none">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Email" b-tableformat="FALSE" b-hashtml="TRUE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Email<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_Field(fp_rs,"Contact_Email")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="37993" --></a></font></td>
						<td align="left" nowrap width="300" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<b>
						<font face="Arial" style="font-size: 9pt" color="#145C9E">
						Instant Messenger</font></b><font face="Arial" style="font-size: 9pt"><font color="#145C9E"><b>: 
						</b></font></font>
						<font face="Arial" style="font-size: 9pt" color="#145C9E"> 
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_IM" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_IM<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_FieldVal(fp_rs,"Contact_IM")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="23343" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap width="600" colspan="2" height="20">
						<font color="#145C9E" face="Arial" style="font-size: 9pt"><b>
						Website: 
						</b>
						<a href="http://<%=FP_FieldURL(fp_rs,"Contact_Website")%>" style="text-decoration: none">
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Website" b-tableformat="FALSE" b-hashtml="TRUE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Website<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_Field(fp_rs,"Contact_Website")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="40895" --></font></td>
					</tr>
					<tr>
						<td align="left" nowrap width="600" colspan="2" height="20">
						<p style="margin-top: 5px; margin-bottom: 5px">
						<font face="Arial" style="font-size: 9pt" color="#145C9E"><b>
						Best Time To Contact:  </b>
			<!--webbot bot="DatabaseResultColumn" s-columnnames="Ad_ID,Account_Name,Account_Country,Account_State,Account_City,Account_Zip_Code,Account_Phone_1,Account_Phone_2,Account_Email,User_ID,Password,Password_Verification,Security_Question,Security_Answer,Ad_Country,Ad_State,Ad_City,Ad_Category,Ad_Category_Details,Business_or_Individual,Company_Name,Individual_Name,Company_Formed,Business_Hours,Business_Address,Business_Country,Business_State,Business_City,Business_Zip_Code,Service_Type,Service_Details,Service_Area,Service_Qualifications,Service_Degrees_Certifications,Service_References,Rates,Payment_Terms,Payment_Accepted,Payment_Accepted_Comments,Contact_First_Name,Contact_Last_Name,Contact_Country,Contact_State,Contact_City,Contact_Zip_Code,Contact_Phone_1,Contact_Phone_2,Contact_Pager,Contact_Pager_PIN,Contact_Email,Contact_IM,Contact_Website,Contact_Time,Terms_Of_Use,Remote_computer_name,User_name,Browser_type,Timestamp" s-column="Contact_Time" b-tableformat="FALSE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Contact_Time<font size="-1">&gt;&gt;</font>" startspan s-ColumnTypes="3,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,135" --><%=FP_FieldVal(fp_rs,"Contact_Time")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="30222" --></font></td>
					</tr>
				</table>
			</div>
    <p class="MsoBodyText2" style="text-align: justify; margin-top: 0; margin-bottom: 0">
	<b><font face="Arial" style="font-size: 9pt"> </font></b><font face="Arial" style="font-size: 9pt"><b>
	</b></font></p>
			<!--webbot bot="DatabaseRegionEnd" b-tableformat="FALSE" b-menuformat="FALSE" u-dbrgn2="_fpclass/fpdbrgn2.inc" i-groupsize="0" clientside tag="BODY" preview="<table border=0 width="100%"><tr><td bgcolor="#FFFF00"><font color="#000000">This is the end of a Database Results region.</font></td></tr></table>" startspan --><!--#include file="_fpclass/fpdbrgn2.inc"-->
<!--webbot bot="DatabaseRegionEnd" endspan i-checksum="62730" --></td>
		</tr>
	</table>

<p style="margin-top: 0; margin-bottom: 0" align="center">
<font face="Arial" style="font-size: 9pt" color="#0000FF">
<font color="#145C9E"><</font><a style="text-decoration: none" href="#Top">Return To Top Of Page</a><font color="#145C9E">></font></font></p>
</div>
<p style="margin-top: 4px; margin-bottom: 0">
<iframe name="I2" marginwidth="3" marginheight="0" height="94" width="766" scrolling="no" align="center" border="0" frameborder="0" src="Support%20Pages/Footer.htm">
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe></p>

</script>

</SCRIPT>

<SCRIPT language=javascript>
function mailpage()
{
mail_str = "mailto:?subject=A Great Website!";
mail_str += "&body=Hey, I thought you might be interested in this great website.";
mail_str += " You can view it at, " + location.href; 
location.href = mail_str;
}
    </SCRIPT>

</html>




Spooky -> RE: Only Show This Image If… (6/13/2006 21:14:13)

So what happens if you change it to? :

<%
Payment_Accepted = fp_field(fp_rs,"Payment_Accepted")&""
%>
<%
If Instr(Payment_Accepted,"Mastercard") > 0 THEN
response.write("<img src=""/Images/Credit_Cards.jpg"">")
end if
%>
<%
If Instr(Payment_Accepted,"Visa") > 0 THEN
response.write("<img src=""/Images/Credit_Cards.jpg"">")
end if
%>




evanesnard -> RE: Only Show This Image If… (6/13/2006 21:22:47)

You are a GENIOUS! Works great! I can't thank you enough. Thanks for hanging with me through that. I had my fingers crossed...I was running out of code to send you!




Page: [1]

Valid CSS!




Forum Software © ASPPlayground.NET Advanced Edition 2.4.5 ANSI
0.34375