ÿþ<!-- Date de création: 2007-07-05 --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-16"> <title>Peinture residentielle et decoration interieur Marlene Boucher</title> <meta name="description" content="Peinture residentielle, Peintre en batiment et décoratrice intérieur à Quebec"> <meta name="keywords" content="peinture résidentiel, peinture, peintre, décoration, interieur, maison, résidence, mode, couleur, home, decor, gout, quincaillerie, repos, travail, qualité, interieur, decorateur, decoratrice, mur, renovation, amelioration, planification, realisation, mode, couleur, conseil, travail, experience, logement, quebec, charlesbourg, ste-foy, vanier, henri-bourassa, neufchatel, boischatel, levis, charny"> <meta name="robots" content="index, follow"> <meta name="revisit-after" content="1 month"> <meta name="reply-to" content="dikafrato@hotmail.com"> <meta name="author" content="Wellie Wenoncourt"> <meta name="copyright" content="dikafrato.com"> <meta name="google-site-verification" content="L2g1LoqorkR9JqYmEa3pRcr-Zr-nHjxFyrBNyHMZWHw" /><!-- validation google --> </head> <body> <center><font size="1" color="#050000">Peinture residentielle, Peintre en batiment et décoratrice intérieur à Quebec </font> </center> <FORM METHOD="POST" ACTION="cgi-bin/web2mail.cgi"> <input type="hidden" name="required" value="Prenom et nom, telephone" /> <TABLE CELLPADDING="3" CELLSPACING="4" WIDTH="0" BORDER="3" BGCOLOR="black"> <input type="hidden" name="Formulaire no" value=2> <input type="hidden" name="Suject" value="Estimation gratuite"> <input type="hidden" name="recipient" value="marleneboucher" /> <tr><td align="center"> <font size="2" color="white"><b>RÉGION DE QUÉBEC --- ESTIMATION GRATUITE</b></font> </tr></td> <TR> <TD COLSPAN=1 ROWSPAN=1> <FONT SIZE="2" color="white"><b> Prénom et nom :&nbsp;</b> <input TYPE=TEXT NAME="Prenom et nom" SIZE="30"></FONT></TD></TR> <TR> <TD COLSPAN=1 ROWSPAN=1><FONT SIZE="2" color="white"><B>Téléphone :&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </B><input TYPE=TEXT NAME="telephone" SIZE="31"></FONT></CENTER> </TD></TR> <TR> <TD COLSPAN=1 ROWSPAN=1><FONT SIZE="2" color="white"><B>Courriel : &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</B> <input TYPE=INT NAME="courriel" SIZE="31"></FONT></CENTER> </TD></TR> <TR> <TD align="right" bgcolor="black"> <input TYPE="SUBMIT" VALUE="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Soumettre &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"> </TD></TR> </form> <!-- ________________________________________ --> <table border="4" align="center" width="800"> <br><br> <tr> <td>&nbsp; <div id="dot0" style="position: absolute; visibility: hidden; height: 11; width: 11;"> <img src="images/pinceau2.gif" height=115 width=70> </div> <div id="dot1" style="position: absolute; height: 11; width: 11;"> <img src="images/pinceau2.gif" height=115 width=70> </div> <!-- <div id="dot2" style="position: absolute; height: 11; width: 11;"> <img src="images/pinceau2.gif" height=115 width=70> </div> <div id="dot3" style="position: absolute; height: 11; width: 11;"> <img src="images/pinceau2.gif" height=115 width=70> </div> <div id="dot4" style="position: absolute; height: 11; width: 11;"> <img src="images/pinceau2.gif" height=115 width=70> </div> <div id="dot5" style="position: absolute; height: 11; width: 11;"> <img src="images/pinceau2.gif" height=115 width=70> </div> <div id="dot6" style="position: absolute; height: 11; width: 11;"> <img src="images/pinceau2.gif" height=115 width=70> </div> --> <script LANGUAGE="JavaScript"> <!-- hide code /* Elastic Trail script (By Philip Winston @ pwinston@yahoo.com, URL: http://www.geocities.com/pwinston/) Script featured on Dynamicdrive.com For this and 100's more DHTML scripts, visit http://dynamicdrive.com */ var nDots = 2; var Xpos = 400; var Ypos = 200; // fixed time step, no relation to real time var DELTAT = .01; // size of one spring in pixels var SEGLEN = 10; // spring constant, stiffness of springs var SPRINGK = 10; // all the physics is bogus, just picked stuff to // make it look okay var MASS = 1; // Positive XGRAVITY pulls right, negative pulls left // Positive YGRAVITY pulls down, negative up var XGRAVITY = 0; var YGRAVITY = 50; // RESISTANCE determines a slowing force proportional to velocity var RESISTANCE = 10; // stopping criterea to prevent endless jittering // doesn't work when sitting on bottom since floor // doesn't push back so acceleration always as big // as gravity var STOPVEL = 0.1; var STOPACC = 0.1; var DOTSIZE = 11; // BOUNCE is percent of velocity retained when // bouncing off a wall var BOUNCE = 0.75; var isNetscape = navigator.appName=="Netscape"; // always on for now, could be played with to // let dots fall to botton, get thrown, etc. var followmouse = true; var dots = new Array(); init(); function init() { var i = 0; for (i = 0; i < nDots; i++) { dots[i] = new dot(i); } if (!isNetscape) { // I only know how to read the locations of the // <LI> items in IE //skip this for now // setInitPositions(dots) } // set their positions for (i = 0; i < nDots; i++) { dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y; } if (isNetscape) { // start right away since they are positioned // at 0, 0 startanimate(); } else { // let dots sit there for a few seconds // since they're hiding on the real bullets setTimeout("startanimate()", 1000); } } function dot(i) { this.X = Xpos; this.Y = Ypos; this.dx = 0; this.dy = 0; if (isNetscape) { this.obj = eval("document.dot" + i); } else { this.obj = eval("dot" + i + ".style"); } } function startanimate() { setInterval("animate()", 20); } // This is to line up the bullets with actual LI tags on the page // Had to add -DOTSIZE to X and 2*DOTSIZE to Y for IE 5, not sure why // Still doesn't work great function setInitPositions(dots) { // initialize dot positions to be on top // of the bullets in the <ul> var startloc = document.all.tags("LI"); var i = 0; for (i = 0; i < startloc.length && i < (nDots - 1); i++) { dots[i+1].X = startloc[i].offsetLeft ; startloc[i].offsetParent.offsetLeft - DOTSIZE; dots[i+1].Y = startloc[i].offsetTop + startloc[i].offsetParent.offsetTop + 2*DOTSIZE; } // put 0th dot above 1st (it is hidden) dots[0].X = dots[1].X; dots[0].Y = dots[1].Y - SEGLEN; } // just save mouse position for animate() to use function MoveHandler(e) { Xpos = e.pageX; Ypos = e.pageY; return true; } // just save mouse position for animate() to use function MoveHandlerIE() { Xpos = window.event.x + document.body.scrollLeft; Ypos = window.event.y + document.body.scrollTop; } if (isNetscape) { document.captureEvents(Event.MOUSEMOVE); document.onMouseMove = MoveHandler; } else { document.onmousemove = MoveHandlerIE; } function vec(X, Y) { this.X = X; this.Y = Y; } // adds force in X and Y to spring for dot[i] on dot[j] function springForce(i, j, spring) { var dx = (dots[i].X - dots[j].X); var dy = (dots[i].Y - dots[j].Y); var len = Math.sqrt(dx*dx + dy*dy); if (len > SEGLEN) { var springF = SPRINGK * (len - SEGLEN); spring.X += (dx / len) * springF; spring.Y += (dy / len) * springF; } } function animate() { // dots[0] follows the mouse, // though no dot is drawn there var start = 0; if (followmouse) { dots[0].X = Xpos; dots[0].Y = Ypos; start = 1; } for (i = start ; i < nDots; i++ ) { var spring = new vec(0, 0); if (i > 0) { springForce(i-1, i, spring); } if (i < (nDots - 1)) { springForce(i+1, i, spring); } // air resisitance/friction var resist = new vec(-dots[i].dx * RESISTANCE, -dots[i].dy * RESISTANCE); // compute new accel, including gravity var accel = new vec((spring.X + resist.X)/MASS + XGRAVITY, (spring.Y + resist.Y)/ MASS + YGRAVITY); // compute new velocity dots[i].dx += (DELTAT * accel.X); dots[i].dy += (DELTAT * accel.Y); // stop dead so it doesn't jitter when nearly still if (Math.abs(dots[i].dx) < STOPVEL && Math.abs(dots[i].dy) < STOPVEL && Math.abs(accel.X) < STOPACC && Math.abs(accel.Y) < STOPACC) { dots[i].dx = 0; dots[i].dy = 0; } // move to new position dots[i].X += dots[i].dx; dots[i].Y += dots[i].dy; // get size of window var height, width; if (isNetscape) { height = window.innerHeight + window.pageYOffset; width = window.innerWidth + window.pageXOffset; } else { height = document.body.clientHeight + document.body.scrollTop; width = document.body.clientWidth + document.body.scrollLeft; } // bounce off 3 walls (leave ceiling open) if (dots[i].Y >= height - DOTSIZE - 1) { if (dots[i].dy > 0) { dots[i].dy = BOUNCE * -dots[i].dy; } dots[i].Y = height - DOTSIZE - 1; } if (dots[i].X >= width - DOTSIZE) { if (dots[i].dx > 0) { dots[i].dx = BOUNCE * -dots[i].dx; } dots[i].X = width - DOTSIZE - 1; } if (dots[i].X < 0) { if (dots[i].dx < 0) { dots[i].dx = BOUNCE * -dots[i].dx; } dots[i].X = 0; } // move img to new position dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y; } } // end code hiding --> </script> <table border="0" align="center" > <tr> <td>&nbsp; <table border="0" width="800" align="center"> <tr> <td>&nbsp; <b><font size="4" color="#cc0000"><b>Nous sommes de la région de Québec</b></font> <div style="text-align: center"><img src="images/carte affaire-2.jpg" border="0" width="620" height="363"> </div> <br><br> <!-- <div style="text-align: center"><a href="formulaire_marlene.html"> <img src="images/enveloppe.gif" border="0" width="20" height="14" alt=""> <font size="4" color="#ff0000"><big> &nbsp; Demander une soumission</big></font></a></div> <br> --> <img src="images/marlene peintre1.jpg" border="0" width="200" height="675" align="left"> <!-- <img src="images/marlenevisage1.jpg" border="0" width="300" height="300" alt="" align="left"> --> <br> <br><br><br><br> <font size="+2"> <font color="#000099"><blockquote> Bonjour, <br> <p><div style="text-align: justify">Je m'appelle Marlène Boucher. Je suis peintre en bâtiment et décoratrice intérieure. Je vous offre mes services pour repeindre votre appartement ou votre résidence. <br> <br> Je suis peintre en bâtiment diplômée, je possède une bonne expérience et mon travail est soigné. En plus de profiter d'un travail de qualité, vous pourrez bénéficier de mes conseils pour un choix de vos couleurs et une touche à la mode.</div></p> </blockquote> </</font> </font> <blockquote><blockquote><img src="images/signe marlene.jpg" border="0" width="331" height="134" alt=""> <br><br> <br><br><br> <img src="images/garantie.gif" border="0" width="70" height="70" align="absmiddle"> <font color="#0000ff"><b> Mes travaux sont propres et soignés.</b></font> <div style="text-align: right"><img src="images/nosmoking.gif" border="0" width="70" height="70" align="absmiddle"> <font color="#ff0000"><b>Je travaille sans fumée.</b></font></div> <img src="images/menage1.gif" border="0" width="70" height="70" align="absmiddle"> <font color="#00CC00"><b>Mes chantiers sont nettoyés chaque jour.</b></font> </blockquote></blockquote> <!-- --> <table border="0" align="center" bgcolor="silver"> <tr> <td>&nbsp; <div style="text-align: center"><font size="4"><a href="formulaire_marlene.html">Embauchez Marlène Boucher pour vos travaux en cliquant ICI</a></font></div> </td> </tr> </table> <!-- --> </table> <br><br><br> <center> <font size="5" color="#000000"><u><b><big> ASTUCES DE PEINTRES</big></b></u></font><br><br> <iframe src="idees.html" name="cadre1" scrolling="yes" align="middle" width="500" height="200"> </iframe> </center> <br> <br> <center> <center> <font size="5" color="#000000"><u><b><big> RÉFÉRENCES</big></b></u></font><br><br> <iframe src="remerciement.html" name="cadre2" scrolling="yes" align="middle" width="500" height="200"> </iframe> </center> <br><br><br> </table></b> <!-- --> <table border="0" align="center" bgcolor="silver"> <tr> <td>&nbsp; <div style="text-align: center"><font size="4"><a href="formulaire_marlene.html">Demande de soumission pour vos travaux en cliquant ICI</a></font></div> </td> </tr> </table> <!-- --> <br><br> <!-- annonc google --> <center> <script type="text/javascript"><!-- google_ad_client = "pub-2091898384525069"; /* dikafrato+ecolaser, date de création 31/01/08 dikafrato.com */ google_ad_slot = "5823249041"; google_ad_width = 728; google_ad_height = 90; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <!-- annonc google --> </center> </td> </tr> </table> <table width="100%" border="0" align="center"> <tr> <td align="center">&nbsp;<font size="2" color="#0000ff"><A HREF="http://www.dikafrato.com">Copyright - © DIKAFRATO 2008-2011 - Tous droits réservés</td> <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</A> </td> </tr> </table> <br><br><br><br> <!-- -----------COMPTEUR__________________ --> <div style="text-align: left"> <!-- CQ Counter code start --> <script type="text/javascript" language="javascript"><!-- _d=document; _n=navigator; _t=new Date(); function t() { _d.write( "<img src=\"http://ca.2.cqcounter.com/cgi-bin/c?_id=peintur&_z=0&_r="+ _r+"&_c="+_c+"&_j="+_j+"&_t="+(_t.getTimezoneOffset())+"&_k="+_k+ "&_l="+escape(_d.referrer)+"\" width=70 height=15 "+ "border=0>");} _c="0"; _r="0"; _j="U"; _k="U"; _d.cookie="_c=y"; _d.cookie.length>0?_k="Y":_k="N";//--></script> <script type="text/javascript" language="javascript1.2"><!-- _n.javaEnabled()?_j="Y":_j="N";_b=screen; _r=_b.width; _n.appName!="Netscape"?_c=_b.colorDepth : _c=_b.pixelDepth;//--></script> <a title="Free Counter" href="http://cqcounter.com/?_id=peintur&_lo=ca2" target="_top"><script type="text/javascript" language="javascript"><!-- t(); //--></script></a><noscript><img width="70" height="15" border="0" alt="Counter" src="http://ca.2.cqcounter.com/cgi-bin/c?_id=peintur&_z=0"><br> <a title="Web Counter" href="http://cqcounter.com/">Hit Counter</a></noscript> <!-- CQ Counter code end --> <br> <br> <a href="http://www.rapidcounter.com/signup.php" target="_top"><img border="0" alt="Free Counters" src="http://counter.rapidcounter.com/counter/1302531823/small"; ALIGN="middle" HSPACE="4" VSPACE="2"></a><script src=http://counter.rapidcounter.com/script/1302531823></script><br><a style="font-size:12" href="http://www.rapidcounter.com/" target="_top"></a> </div> <!-- -----------COMPTEUR__________________ --> </body> </html>