<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Language" content="en-ca">
<title>The Wizard Web Design | Burnaby, BC</title>
<STYLE type="text/css">
<!--
a {color:black;}
a:visited {color:black;}
a:hover {color:red;}
-->
</STYLE>
<script type="text/javascript">
<!--
if (screen.width <= 400) {
document.location = "http://thewizardwebdesign.com/mobilewebsite";
}
//-->
</script>
<SCRIPT
src="images/oodomimagerollover.js"
type=text/javascript></SCRIPT>
<SCRIPT
src="images/IEFixHome.js"
type=text/javascript></SCRIPT>
<script type="text/javascript">
/***********************************************
* Image w/ description tooltip
***********************************************/
/* IMPORTANT: Put script after tooltip div or
put tooltip div just before </BODY>. */
var dom = (document.getElementById) ? true : false;
var ns5 = (!document.all && dom || window.opera) ? true: false;
var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false;
var ie4 = (document.all && !dom) ? true : false;
var nodyn = (!ns5 && !ie4 && !ie5 && !dom) ? true : false;
var origWidth, origHeight;
// avoid error of passing event object in older browsers
if (nodyn) { event = "nope" }
/////////////////////// CUSTOMIZE HERE ////////////////////
// settings for tooltip
// Do you want tip to move when mouse moves over link?
var tipFollowMouse= true;
// Be sure to set tipWidth wide enough for widest image
var tipWidth= 510;
var offX= 10; // how far from mouse to show tip
var offY= 12;
var tipFontFamily= "Verdana, arial, helvetica, sans-serif";
var tipFontSize= "8pt";
// set default text color and background color for tooltip here
// individual tooltips can have their own (set in messages arrays)
// but don't have to
var tipFontColor= "#FFFFFF";
var tipBgColor= "#DDECFF";
var tipBorderColor= "#70050a";
var tipBorderWidth= 3;
var tipBorderStyle= "ridge";
var tipPadding= 4;
// tooltip content goes here (image, description, optional bgColor, optional textcolor)
var messages = new Array();
// multi-dimensional arrays containing:
// image and text for tooltip
// optional: bgColor and color to be sent to tooltip
messages[0] = new Array('images/ss2.jpg','Dinos Auto Truck Repairs',"#b90810");
messages[1] = new Array('images/ss4.jpg','Trenchless Pipe Bursting Plumbers',"#b90810");
messages[2] = new Array('images/ss6.jpg','Lawyers For ICBC',"#b90810");
messages[3] = new Array('images/ss1.jpg','Seen On TV Show Products',"#b90810");
messages[4] = new Array('images/ss7.jpg','Point Click Shop Online',"#b90810");
messages[5] = new Array('images/ss8.jpg','Canada Website',"#b90810");
messages[6] = new Array('images/ss9.jpg','East Van Junk Removal',"#b90810");
messages[7] = new Array('images/ss10.jpg','Trez Hombrez Production Services INC',"#b90810");
//////////////////// END OF CUSTOMIZATION AREA ///////////////////
// preload images that are to appear in tooltip
// from arrays above
if (document.images) {
var theImgs = new Array();
for (var i=0; i<messages.length; i++) {
theImgs[i] = new Image();
theImgs[i].src = messages[i][0];
}
}
// to layout image and text, 2-row table, image centered in top cell
// these go in var tip in doTooltip function
// startStr goes before image, midStr goes between image and text
var startStr = '<table width="' + tipWidth + '"><tr><td align="center" width="100%"><img src="';
var midStr = '" border="0"></td></tr><tr><td valign="top">';
var endStr = '</td></tr></table>';
////////////////////////////////////////////////////////////
// initTip - initialization for tooltip.
// Global variables for tooltip.
// Set styles
// Set up mousemove capture if tipFollowMouse set true.
////////////////////////////////////////////////////////////
var tooltip, tipcss;
function initTip() {
if (nodyn) return;
tooltip = (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null;
tipcss = tooltip.style;
if (ie4||ie5||ns5) { // ns4 would lose all this on rewrites
tipcss.width = tipWidth+"px";
tipcss.fontFamily = tipFontFamily;
tipcss.fontSize = tipFontSize;
tipcss.color = tipFontColor;
tipcss.backgroundColor = tipBgColor;
tipcss.borderColor = tipBorderColor;
tipcss.borderWidth = tipBorderWidth+"px";
tipcss.padding = tipPadding+"px";
tipcss.borderStyle = tipBorderStyle;
}
if (tooltip&&tipFollowMouse) {
document.onmousemove = trackMouse;
}
}
window.onload = initTip;
/////////////////////////////////////////////////
// doTooltip function
// Assembles content for tooltip and writes
// it to tipDiv
/////////////////////////////////////////////////
var t1,t2; // for setTimeouts
var tipOn = false; // check if over tooltip link
function doTooltip(evt,num) {
if (!tooltip) return;
if (t1) clearTimeout(t1); if (t2) clearTimeout(t2);
tipOn = true;
// set colors if included in messages array
if (messages[num][2]) var curBgColor = messages[num][2];
else curBgColor = tipBgColor;
if (messages[num][3]) var curFontColor = messages[num][3];
else curFontColor = tipFontColor;
if (ie4||ie5||ns5) {
var tip = startStr + messages[num][0] + midStr + '<span style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + curFontColor + ';">' + messages[num][1] + '</span>' + endStr;
tipcss.backgroundColor = curBgColor;
tooltip.innerHTML = tip;
}
if (!tipFollowMouse) positionTip(evt);
else t1=setTimeout("tipcss.visibility='visible'",100);
}
var mouseX, mouseY;
function trackMouse(evt) {
standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes
mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft;
mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop;
if (tipOn) positionTip(evt);
}
/////////////////////////////////////////////////////////////
// positionTip function
// If tipFollowMouse set false, so trackMouse function
// not being used, get position of mouseover event.
// Calculations use mouseover event position,
// offset amounts and tooltip width to position
// tooltip within window.
/////////////////////////////////////////////////////////////
function positionTip(evt) {
if (!tipFollowMouse) {
standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body
mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft;
mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop;
}
// tooltip width and height
var tpWd = (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth;
var tpHt = (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight;
// document area in view (subtract scrollbar width for ns)
var winWd = (ns5)? window.innerWidth-20+window.pageXOffset: standardbody.clientWidth+standardbody.scrollLeft;
var winHt = (ns5)? window.innerHeight-20+window.pageYOffset: standardbody.clientHeight+standardbody.scrollTop;
// check mouse position against tip and window dimensions
// and position the tooltip
if ((mouseX+offX+tpWd)>winWd)
tipcss.left = mouseX-(tpWd+offX)+"px";
else tipcss.left = mouseX+offX+"px";
if ((mouseY+offY+tpHt)>winHt)
tipcss.top = winHt-(tpHt+offY)+"px";
else tipcss.top = mouseY+offY+"px";
if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100);
}
function hideTip() {
if (!tooltip) return;
t2=setTimeout("tipcss.visibility='hidden'",100);
tipOn = false;
}
document.write('<div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>')
</script>
<SCRIPT
src="images/oodomimagerollover.js"
type=text/javascript></SCRIPT>
<SCRIPT
src="images/IEFixHome.js"
type=text/javascript></SCRIPT>
</head>
<body topmargin="0" bgcolor="#0A090E" background="images/1newdown.jpg">
<table align="center" width="1027" cellspacing="0" cellpadding="0" border="0">
<tr>
<td bgcolor="#0F0A06">
<br>
<a href="mailto:webmaster@thewizardwebdesign.com">
<img border="0" src="images/middleline.jpg" width="1030" height="171"></a><br>
<img border="0" src="images/bottom1.jpg" width="579" height="38"><img border="0" src="images/bottom2.jpg" width="166" height="38"><a href="https://www.facebook.com/thewizardwebdesign"><img border="0" src="images/bottom3.jpg" width="63" height="38" alt="The Wizard on Facebook"></a><a href="https://twitter.com/thewizardweb"><img border="0" src="images/bottom4.jpg" width="56" height="38" alt="The Wizard on Twitter"></a><a href="https://plus.google.com/b/117664140229977057234/117664140229977057234/posts"><img border="0" src="images/bottom5.jpg" width="57" height="38" alt="The Wizard on Google+"></a><a href="http://www.youtube.com/channel/UC1FvRMz8iKYg_VM4va45nhw"><img border="0" src="images/bottom6.jpg" width="59" height="38" alt="The Wizard on Youtube"></a><img border="0" src="images/bottom7.jpg" width="52" height="38"></td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td bgcolor="#AA1526">
<img border="0" src="images/mnew.jpg" width="1034" height="51"> </td>
</tr>
<tr>
<td align="left" valign="top">
<img border="0" src="images/begin.jpg" width="215" height="39"><a title="Home Page" href="index.html"><img border="0" src="images/button1.jpg" border=0 srcover="images/button1off.jpg" alt="Home Index Page"></a><a href="web-site-design.html"><img border="0" src="images/button2.jpg" border=0 srcover="images/button2off.jpg" alt="Web Site Design"></a><a href="ecommerce-shopping-carts.html"><img border="0" src="images/button4.jpg" border=0 srcover="images/button4off.jpg" alt="E-commerce Shopping Carts"></a><a href="google-search-marketing.html"><img border="0" src="images/button5.jpg" border=0 srcover="images/button5off.jpg" alt="Google Search Marketing"></a><a href="contact-us.html"><img border="0" src="images/button6.jpg" border=0 srcover="images/button6off.jpg" alt="Contact Us"></a><img border="0" src="images/end.jpg" width="183" height="39"><br>
<img border="0" src="images/1menu2.jpg" width="1033" height="37"></td>
</tr>
</table>
<table align="center" width="1033" cellspacing="0" cellpadding="0" border="0"><tr>
<td align="center">
<p align="center">
<img border="0" src="images/1buttonnew.jpg" width="1033" height="36"><br>
<a onmouseover="doTooltip(event,0)" onmouseout="hideTip()" target="_blank" href="http://dinosautotruckrepairs.com"><img border="0" src="images/but1.jpg" width="260" height="197"></a><a onmouseover="doTooltip(event,1)" onmouseout="hideTip()" target="_blank" href="http://movingonupmovers.com"><img border="0" src="images/but2.jpg" width="252" height="197"></a><a onmouseover="doTooltip(event,2)" onmouseout="hideTip()" target="_blank" href=""><img border="0" src="images/but3.jpg" width="255" height="197"></a><a onmouseover="doTooltip(event,3)" onmouseout="hideTip()" target="_blank" href="http://seenontvshowproducts.com/"><img border="0" src="images/but4.jpg" width="266" height="197"></a><br>
<img border="0" src="images/4newline.jpg" width="1031" height="7"><br><img border="0" src="images/2buttonnew.jpg" width="1031" height="36"><br>
<a onmouseover="doTooltip(event,4)" onmouseout="hideTip()" target="_blank" href="http://pointclickshoponline.com"><img border="0" src="images/but55.jpg" width="260" height="197"></a><a onmouseover="doTooltip(event,5)" onmouseout="hideTip()" target="_blank" href="http://thewizardwebdesign.com/canada"><img border="0" src="images/but66.jpg" width="252" height="197"></a><a onmouseover="doTooltip(event,6)" onmouseout="hideTip()" target="_blank" href="http://eastvanjunkremoval.com"><img border="0" src="images/but77.jpg" width="255" height="197"></a><a onmouseover="doTooltip(event,7)" onmouseout="hideTip()" target="_blank" href="http://trezhombrez.com/"><img border="0" src="images/but88.jpg" width="266" height="197"></a><br>
<img border="0" src="images/bottom.jpg" width="1031" height="12"><br><b><font color="#B9868E" face="Verdana">Our Full Website Coming
Fall 2019</font></b>
</body>
</html>