@charset "UTF-8";
#seal {
	position: absolute;
	left: 380px;
	top: 160px;
}
a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}
a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}
a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #996600;
	text-decoration: none;
}
.nav_highlight {
	color: #996600;
}
.mailto {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 10px;
	font-style: normal;
}
#watermark {
	position: absolute;
	left: 902px;
	top: 470px;
}
a:active {
	background-image: url(images/broken_seal.gif);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #996600;
	text-decoration: none;
}
body {
	background-image: url(images/main_bcgd.gif);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0px;
}
.white {
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
}
.rollovertext {
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #CC0000;
}

.bigtext {
	font-family: "Times New Roman", Times, serif;
	font-size: 36px;
	font-weight: bold;
	text-transform: uppercase;
	color: #FFFFFF;
}
 
 <?php
//-----------------------Get the data fromthe form on the page before -----------------------------//
if (isset ($_POST['submit'])) {
  $name = $_POST['name'];
  $email = $_POST['email'];
  $phone = $_POST['phone'];
  $subject = $_POST['subject'];
  $body = $_POST['body'];
}

//-------------------EMAIL FUNCTIONS-----------------------//

//subject line of the email
$subjectline = "FROM DAVELOOK.com: " . $subject;

//body of the email
$txt = "Name: " . $name . " Email: " . $email . " Phone: " . $phone . "Message: " . $body;


// -------------------- Headers and information ----------------------------------//

//To user
$headers = 'To: Dave Look <dave@davelook.com>' . "\r\n";
$headers .= 'From: ' . $name . ' <' . $email . '>' . "\r\n";


//call to the mail functions
mail('dave@davelook.com',$subject,$txt,$headers);
?>
