

function mailMan() {
var browser=navigator.appName
var Line='%0A';
var Name='Name&#x3a; ';
var Address='Address&#x3a; ';
var City='City&#x3a; ';
var State='State&#x3a; ';
var ZipCode='ZipCode&#x3a; ';
var PhoneNumber='PhoneNumber&#x3a; ';
var mailTO='mailto:';
var debbie='debbie';
var chuck='chuck';
var biz='@aftontrucking.biz';
var debbie=debbie+biz;
var chuck=chuck+biz;
var subject='?SUBJECT=from Afton\'s Best Customer';
var andCC='&cc=';
var andBody='&body=';
var CustomerName=document.FormMail.CustomerName.value;
var CustomerAddress=document.FormMail.CustomerAddress.value;
var CustomerCity=document.FormMail.CustomerCity.value;
var CustomerState=document.FormMail.CustomerState.value;
var CustomerZipCode=document.FormMail.CustomerZipCode.value;
var CustomerPhoneNumber=document.FormMail.CustomerPhoneNumber.value;
var CustomerInfo=Name+CustomerName+Line+Address+CustomerAddress+Line+City+CustomerCity+Line+State+CustomerState+Line+ZipCode+CustomerZipCode+Line+PhoneNumber+CustomerPhoneNumber+Line;
var CustomerEmail=document.FormMail.CustomerEmail.value;
var mailIE=mailTO+debbie+subject+andCC+chuck+andBody+'Customer Information%0A'+CustomerInfo+'%0A%0ACustomer Email Follows&#x3a;%0A'+CustomerEmail;
var mail=mailTO+debbie+subject+andCC+chuck+andBody+'Customer Information: %0A '+CustomerName+'  :   '+CustomerAddress+'  :  '+CustomerCity+'  :  '+CustomerState+'  :  '+CustomerZipCode+'  :  '+CustomerPhoneNumber+'  :  '+'  %0A  Customer Email:  %0A '+CustomerEmail;
 
if (browser=="Microsoft Internet Explorer") {
location=mailIE;
 }else{
location=mail;
}

alert('Have a GREAT day!'); 

location="ThankYou.htm";
 
} 



function goHere() { 
if (screen.height<600) {window.location = './Home480.htm'; } 
if ((screen.height>480) && (screen.height<768)) { window.location = './Home600.htm'; } 
if ((screen.height>600) && (screen.height<864)) { window.location = './Home768.htm'; } 
if ((screen.height>768) && (screen.height<1024)) { window.location = './Home864.htm'; } 
if (screen.height==1024) { window.location = './Home1024.htm'; } 
if (screen.height>1024) { window.location = './Home1024.htm'; } 
}

// http://www.napoleonfireplaces.com/Webshare/demos/Woodburning/movie.htm

function showBanner(z) {

var contents='<B><FONT COLOR="FFFF00">~ Welcome to Afton Landscape Supply :)</FONT></B>';

if (z=='banner480') {document.getElementById("banner480").innerHTML =contents; }
if (z=='banner600') {document.getElementById("banner600").innerHTML =contents; }
if (z=='banner768') {document.getElementById("banner768").innerHTML =contents; }
if (z=='banner864') {document.getElementById("banner864").innerHTML =contents; }
if (z=='banner1024') {document.getElementById("banner1024").innerHTML =contents; }
}


function displayImage(I) {

if (I=='techniSealVideo') {
document.getElementById('techniSealVideo').innerHTML ='<EMBED SRC="http://www.techniseal.com/video/Sand_eng.wmv" WIDTH="300" HEIGHT="300"><BR><A HREF="javascript:history.go();">Close Video</A>';}

if (I=='pelletVideo') {
document.getElementById('pelletVideo').innerHTML ='<EMBED SRC="http://www.jamestownpelletstoves.ca/upload/audiovideo/sales-video-web-site.wmv" WIDTH="300" HEIGHT="300"><BR><A HREF="javascript:history.go();">Close Video</A>';
}

if ((I>10)&&(I<28)) {
var A="<IMG SRC='./graphics/";
var B=I;
var C=".jpg' HEIGHT='100'>";
var D=A+B+C;
k=I+1;
if (k>27) k=11;
document.getElementById('images').innerHTML =D;
indexImage(k);
}
}

function indexImage(k) { setTimeout("displayImage(k)",2200);}




