Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 16th, 2012  |  syntax: None  |  size: 6.40 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Contact Us</title>
  5. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  6. <meta name="description" content=“At Auction provides a turn key auction e-commerce software solution and auction managed services which enable online e-commerce retailers, online marketers, and fundraising or charity organizations the ability to enhance revenues through online auctions.”  />
  7. <meta name="keywords" content="Auctions, Online Auctions, Auction Management, Auction Services, Auction Software,  Online Auction Software, Auction Technology, E-commerce Auctions, Fundraising Auctions, Private Label Auction Site, Inventory Asset Recovery, Inventory Liquidation" />
  8. <link href="scripts/interior.css" rel="stylesheet" type="text/css" />
  9. <link href="scripts/dropdown.css" media="all" rel="stylesheet" type="text/css" />
  10. <link href="scripts/default.css" media="all" rel="stylesheet" type="text/css" />
  11. <!-- Internet Explorer workaround, natch. -->
  12. <script type="text/javascript" src="scripts/jquery.js"></script>
  13. <script type="text/javascript" src="scripts/jquery.dropdown.js"></script>
  14. <script type="text/javascript" src="scripts/auctionTimer.js"></script>
  15. </head>
  16. <body onLoad=
  17. "var oop=new Cnt('tst',Srt,75);var oop=new Cnt('tst1',Srt,2);">
  18. <div id="topnav">
  19. <ul id="nav" class="dropdown dropdown-horizontal">
  20.         <li class="dir">SOLUTIONS
  21.                 <ul>
  22.                         <li><a href="auction_management.html">Auction Management</a></li>
  23.             <li><a href="private_label.html">Private Label</a></li>
  24.               <li><a href="fundraising.html">Fund Raising</a></li>
  25.             <li><a href="inventory_recovery.html">Inventory Asset Recovery</a></li>
  26.                 </ul>
  27.         </li>
  28.         <li class="dir"><a href="clients.html">CLIENTS</a></li>
  29.     <li class="dir">COMPANY
  30.         <ul>
  31.                         <li><a href="management.html">Management</a></li>
  32.             <li><a href="about.html">About Us</a></li>
  33.                 </ul>
  34.     </li>
  35.     <li class="dir"><a href="news.html">NEWS</a></li>
  36.     <li class="dir"><a href="contact.html">CONTACT US</a></li>  
  37. </ul>
  38. </div>
  39. <div id="maincontentarea">
  40. <p> </p>
  41. <p></p>
  42.   <?
  43. ///////////////////////////
  44. //
  45. ///////////////////////////
  46.  
  47. //
  48. $to = "gsmith@atauction.com" . ", " ;
  49.  
  50. // Email Subject
  51. $subject = "Request From " . "At Auction Web Form";
  52.  
  53. // Server name, to display in the headers
  54. $server_name = "Web Form";
  55.  
  56. if (!empty($_POST['send']) || !empty($_GET['send']))
  57.         {
  58.         $action = (!empty($_POST['send'])) ? $_POST['send'] : $_GET['send'];
  59.         }
  60. else
  61.         {
  62.         $action = '';
  63.         }
  64.  
  65. $build_message = false;
  66. if($action != "")
  67.         {
  68.         $build_message = true;
  69.         $firstname = trim($_POST['firstname']);
  70.         $lastname = trim($_POST['lastname']);
  71.         $title = trim($_POST['title']);
  72.         $business = trim($_POST['business']);
  73.         $email = trim($_POST['email']);
  74.         $phone = trim($_POST['phone']);
  75.         $website = trim($_POST['website']);
  76.         $NewAuctionSolution = trim($_POST['NewAuctionSolution']);
  77.         $HelpManaging = trim($_POST['HelpManaging']);
  78.         $NewRevenue = trim($_POST['NewRevenue']);
  79.         $Attracting = trim($_POST['Attracting']);
  80.         $IncreaseCustomerLoyalty = trim($_POST['IncreaseCustomerLoyalty']);
  81.         $Fundraising = trim($_POST['Fundraising']);
  82.         $Liquidation = trim($_POST['Liquidation']);
  83.         $time = time();
  84.         $date = date("F j, Y", time());
  85.         $headers = "MIME-Version: 1.0\r\n";
  86.         $headers .= "Content-type: text/plain; charset=UTF-8\r\n";
  87.         $headers .= "From: $email\r\n";
  88.         $headers .= "X-mailer: " . $server_name . " Server\r\n";
  89.         }
  90.  
  91. if($build_message)
  92.         {
  93. /* message */
  94. $message = "
  95. Sender First Name: $firstname\n
  96. Sender Last Name: $lastname\n
  97. Sender Title: $title\n
  98. Sender Company: $business\n
  99. Sender E-Mail: $email\n
  100. Sender Phone: $phone\n
  101. Sender Website: $website\n
  102. \n
  103. Note - 'on' indicates a checked box for the following:\n
  104. A new auction solution: $NewAuctionSolution\n
  105. Help managing our auction solutions: $HelpManaging\n
  106. New incremental revenue streams for our site: $NewRevenue\n
  107. Attracting new customers: $Attracting\n
  108. Increase repeat visitors to our site and improve customer loyalty: $IncreaseCustomerLoyalty\n
  109. New ways to enhance our fundraising or charity efforts: $Fundraising\n
  110. Help liquidating our overstocked or excess inventory: $Liquidation\n
  111. Date Sent: $date\n
  112. Message:\n----------------------------------------\n$message \n";
  113.  
  114.         if(mail($to, $subject, $message, $headers))
  115.                 {
  116.                 $result = "<b>Thank you for your request</b>.<br />We will contact you with a reply as soon as possible.<br />";
  117.                 }
  118.         else
  119.                 {
  120.                 $result = "Sorry: An error occured, please try again later.";
  121.                 }
  122.         }
  123.  
  124. // Output a result Message
  125. print $result;
  126. ?>
  127.  
  128. </div>
  129. <div id="leftnavarea">
  130. <a href="auction_management.html">SOLUTIONS</a> <br />
  131.  
  132. <a href="clients.html">CLIENTS</a><br />
  133. <a href="management.html">COMPANY</a><br />
  134. <a href="news.html">NEWS</a><br />
  135. <a href="contact.html" id="orange">CONTACT US</a></div>
  136. <div id="auctionticker"><span id="tst" ></span> Auctions Won</div>
  137. <div id="logo"><a href="index.html"><img name="logo_img" src="images/logo.jpg" width="352" height="83" border="0" alt="At Auction Logo" /></a></div>
  138. <div id="contact">
  139. <div id="breadcrumbsnav">
  140. <a href="index.html">AT AUCTION</a> > CONTACT US</div>
  141. </div>
  142. <div id="titlebanner"><img name="title_banner" src="images/contact_header.jpg" width="949" height="80" border="0" alt="Auction Management Solutions" /></div>
  143.  
  144. <div id="footernav" style="
  145.         position:absolute;
  146.         left:375px;
  147.         top:1254px;
  148.         width:600px;
  149.         height:20px;
  150.         visibility:visible;">
  151. <p> <a href="index.html">Home</a> | <a href="auction_management.html">Solutions</a> | <a href="clients.html">Clients</a> | <a href="company.html">Company</a> | <a href="news.html">News</a> | <a href="contact.html">Contact Us</a> </p>
  152. </div>
  153.  
  154. <div id="legalinfo" style="position:absolute;
  155.         left:400px;
  156.         top:1284px;
  157.         width:569px;
  158.         height:20px;
  159.         visibility:visible;">
  160. <p>&copy; Copyright 2009 At Auction, All Rights Reserved</p>
  161. </div>
  162. </body>
  163.  
  164. <script type="text/javascript">
  165. var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
  166. document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  167. </script>
  168. <script type="text/javascript">
  169. try {
  170. var pageTracker = _gat._getTracker("UA-15982079-1");
  171. pageTracker._trackPageview();
  172. } catch(err) {}</script>
  173. </html>