<%@ Language=VBScript %> <% Call Main() Sub Main() Dim Action Dim ErrorMessage Dim Captcha Dim CorrectLetterString Action = request("Action") ErrorMessage = Request("ErrorMessage") Captcha = Request("Captcha") CorrectLetterString = Request("CorrectLetterString") Call DrawHeader() If Action = "" Then Call DrawForm(ErrorMessage,ThisPagesName) ElseIf Action = "Submit" then strCAPTCHA = Trim(Request.Form("strCAPTCHA")) If CheckCAPTCHA(strCAPTCHA) = true then Call InsertAndSendMail() Call DisplayThankYou() Else RESPONSE.WRITE "
CheckCAPTCHA failed. Checking " & Trim(Request.Form("strCAPTCHA")) & "!

" Call DrawForm(ErrorMessage,ThisPagesName) End If End If Call DrawFooter() End Sub Function CheckCAPTCHA(valCAPTCHA) SessionCAPTCHA = Trim(Session("CAPTCHA")) Session("CAPTCHA") = vbNullString if Len(SessionCAPTCHA) < 1 then CheckCAPTCHA = False exit function end if if CStr(SessionCAPTCHA) = CStr(valCAPTCHA) then CheckCAPTCHA = True else CheckCAPTCHA = False end if End Function Sub SendEmail(ToAddress, CCAddress, BccAddress, FromAddress, Subject, Body) %> <% Set cdoConfig = CreateObject("CDO.Configuration") With cdoConfig.Fields .Item(cdoSendUsingMethod) = cdoSendUsingPort .Item(cdoSMTPServer) = "mail-gw.fsr.net" .Update End With Set cdoMessage = CreateObject("CDO.Message") With cdoMessage Set .Configuration = cdoConfig .From = FromAddress .To = ToAddress .CC = CCAddress .BCC = BccAddress .Subject = Subject .HTMLBody = Body .Send End With Set cdoMessage = Nothing Set cdoConfig = Nothing End Sub Sub DisplayThankYou() %>
Thank you for contacting us. Somebody will get back to you shortly.
<% End Sub Sub DrawForm(ByVal ErrorMessage, ByVal ThisPagesName) Dim TermsOfUse If ErrorMessage = 1 Then%> ERROR!!   PLEASE TYPE THE LETTERS AT THE BOTTOM OF THE PAGE CORRECTLY INTO THE TEXT AREA PROVIDED.<% End If%>

Personal Information

First Name*

" type="text" id="FirstName" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="1" size="20">

Last Name*

" type="text" id="LastName" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="2" size="20">

Organization*

" name="Organization" size="20" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="3">

Billing Address*

" name="Address" size="20" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="4">

City*

" name="City" size="20" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="5">

     

State*

Zip*       

  " type="text" id="ZipCode" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="7" size="10">

Job Location Address*

" name="LocationAddress" size="20" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="8">

City*

" name="LocationCity" size="20" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="9">

     

State*

Zip*       

  " type="text" id="LocationZipCode" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="11" size="10">

Best Time to Call

  Checked<%End IF %> value="Morning" name="Besttimetocall" tabindex="11"> Morning Checked<%End IF %> name="Besttimetocall" value="Afternoon" tabindex="12">Afternoon Checked<%End IF %> name="Besttimetocall" value="Evening" tabindex="13">Evening Checked<%End IF %> name="Besttimetocall" value="Weekend" tabindex="13">Weekend
 

Day Phone*

" type="text" id="DayPhone" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="15" size="20">  

Fax Number

" name="FaxNumber" type="text" id="FaxNumber" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="16" size="20">

Email*

" name="ClientEmail" type="text" id="ClientEmail" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="18" size="20">

   

Evening Phone

" name="EveningPhone" type="text" id="EveningPhone" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="19" size="20">  

Mobile Phone

" name="MobilePhone" type="text" id="MobilePhone" style="font-family: Arial; font-size: 10pt; font-weight: bold; color: #000000; border: 1px solid #336600; padding: 0; background-color: #f2eedb" tabindex="20" size="20">  

* Are required fields
 

Approximate Building Size

Length

Width

Height

 

How soon would you like to start construction?

Checked<%End IF %> value="Immediately" tabindex="24">   Immediately

Checked<%End IF %> value="Within a month" tabindex="25">   Within a month

Checked<%End IF %> value="Within 2 months" tabindex="26">   2 months

Checked<%End IF %> value="More than 2 months" tabindex="27">   More than 2 months

Comments
Please provide us with as much information about your building project as possible.
Thank you!
 


This Is A CAPTCHA Image

Enter the characters in the image above (Case sensitive)

<%Call JavaScriptFormCheck()%> <%End Sub sub InsertAndSendMail() IPNum = Request.ServerVariables("REMOTE_ADDR") SubmitDate = Now() FirstName = Replace(Request("FirstName"),"'","''") LastName = Replace(Request("LastName"),"'","''") Organization = Replace(Request("Organization"),"'","''") Address = Replace(Request("Address"),"'","''") City = Replace(Request("City"),"'","''") State = Replace(Request("State"),"'","''") ZipCode = Replace(Request("ZipCode"),"'","''") LocationAddress = Replace(Request("LocationAddress"),"'","''") LocationCity = Replace(Request("LocationCity"),"'","''") LocationState = Replace(Request("LocationState"),"'","''") LocationZipCode = Replace(Request("LocationZipCode"),"'","''") Besttimetocall = Replace(Request("Besttimetocall"),"'","''") DayPhone = Replace(Request("DayPhone"),"'","''") FaxNumber = Replace(Request("FaxNumber"),"'","''") ClientEmail = Replace(Request("ClientEmail"),"'","''") EveningPhone = Replace(Request("EveningPhone"),"'","''") MobilePhone = Replace(Request("MobilePhone"),"'","''") BuildingLength = Replace(Request("BuildingLength"),"'","''") BuildingWidth = Replace(Request("BuildingWidth"),"'","''") BuildingHeight = Replace(Request("BuildingHeight"),"'","''") ConstructionDate = Replace(Request("ConstructionDate"),"'","''") Comments = Replace(Request("Comments"),"'","''") theBody = "
" theBody = theBody & "Below is the result of your feedback form. It was submitted by
" & ClientEmail & " on " & Now() & "

" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "" theBody = theBody & "
First Name:" & FirstName & "
Last Name:" & LastName & "
Organization:" & Organization & "
Address:" & Address & "
Organization:" & Organization & "
City:" & City & "
State:" & State & "
Zip Code:" & ZipCode & "
Location Address:" & LocationAddress & "
Location City:" & LocationCity & "
Location State:" & LocationState & "
Location Zip Code:" & LocationZipCode & "
Besttimetocall:" & Besttimetocall & "
Day Phone:" & DayPhone & "
Fax Number:" & FaxNumber & "
Client Email:" & ClientEmail & "
Evening Phone:" & EveningPhone & "
Mobile Phone:" & MobilePhone & "
Building Length:" & BuildingLength & "
Building Width:" & BuildingWidth & "
Building Height:" & BuildingHeight & "
Construction Date:" & ConstructionDate & "
Comments:" & Comments & "
" theBody = theBody & "
" stSubject = "Estimate Request" Call SendEmail("mpb@mikespolebarns.com", "", "", "mpb@mikespolebarns.com", stSubject, theBody) end sub Sub DrawFooter()%>

 
Mike H. Winroth, Owner Shawn Wilks, Manager
WA CONT # MIKESPB935BU
ID license #: RCE-35508

 

Home | Services | Projects | Free Estimate | Map | Contact

All Rights Reserved 2003-2007 Mike's Pole Barns, LLC Web Site by Danielle'sDesign.Com

E-mail Mike's Pole Barns <%End Sub Sub DrawHeader()%> Free Estimate - Mike's Pole Barns, Clarkston, WA
 
Home Services Photos View map & get directions How may we help you?
 
 

Mike's Pole Barns is located in Clarkston, Washington serving Clarkston, Lewiston, Idaho and the surrounding areas. We are your ONE-STOP contracting service! Browse our site to learn more or get a free estimate!

 

The measurements used for success at Mike's Pole Barns, LLC are simple: Professionalism, Efficiency and Effectiveness.

From the initial contact to the final screw put into the building, the customer will be treated with the utmost respect. We are here for you and want to build your dream project!

Mike's Pole Barns can design any building to meet your needs!
   

Free Estimate <% End Sub Sub JavaScriptFormCheck()%> <% End sub%>