<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Contact Us</title>
<style type="text/css">
<!--
body {
background-color: #CC0000;
}
.style1 { color: #c0c0c0;
font-size: 36px;
font-family: "Beyond Wonderland";
}
.style3 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
font-weight: bold;
color: #C0C0C0;
}
.style9 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #C0C0C0;
}
.style16 {color: #000000}
.style17 {color: #C0C0C0}
.style18 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #C0C0C0;
}
.title {
font-family: Georgia, "Times New Roman", Times, serif;
color: #C0C0C0;
font-size: 14px;
}
-->
</style>
<script type="text/javascript">
<!--
var xmlHttp;
function sendemail(){
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
{
alert ("Your browser does not support AJAX!");
return;
}
var url="sendmail.php";
params="action=send";
fname = document.getElementById('fname').value;
email = document.getElementById('email').value;
phone = document.getElementById('phone').value;
comments = document.getElementById('comments').value;
params = params + '&fname=' + fname + '&email=' + email + '&phone=' + phone + '&comments=' + comments;
params=params+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open('POST', url, true);
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.send(params);
}
function loadform(){
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
{
alert ("Your browser does not support AJAX!");
return;
}
var url="sendmail.php";
params="action=load";
params=params+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open('get', url+'?'+params, true);
xmlHttp.send(null);
}
function stateChanged() {
if (xmlHttp.readyState==4){
document.getElementById("results").innerHTML=xmlHttp.responseText;
} else {
document.getElementById("results").innerHTML='Busy...';
}
}
function GetXmlHttpObject()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}
-->
</script>
</head>
<body>
<div align="center"><span class="style1">Contact Us</span></div>
<p class="style3"><u>Contact Info:</u></p>
<p class="style17">Bruce Tager: +27834633261<br />
Glendyr Tager: +27842055089<br />
Nicole Tager: +27841234567<br />
Fax: 0866450322</p>
<p class="style9"><strong><u>Postal address :</u></strong> </p>
<p class="style17">Post Net Suite 16 <br />
Private Bag X16<br />
Hermanus <br />
7200 <br />
South Africa</p>
<p class="title">Enter the title that you want to appear in here</p>
<div id="results" class="style17"> </div>
<script type="text/javascript"><!--
loadform();
-->
</script>
</body>
</html>