//ROLLOVER FUNCTION
<!--


if (document.images) {

button1on = new Image();
button1on.src = "images/fp_img_comm2_ENG.jpg";
button1off = new Image();
button1off.src = "images/fp_img_comm_ENG.jpg";

button2on = new Image();
button2on.src = "images/fp_img_resid2_ENG.jpg";
button2off = new Image();
button2off.src = "images/fp_img_resid_ENG.jpg";

button3on = new Image();
button3on.src = "images/fp_img_cont2_ENG.jpg";
button3off = new Image();
button3off.src = "images/fp_img_cont_ENG.jpg";

button1_alt	= "Maryland commercial landscaping";
button2_alt	= "Virginia residential landscaping";
button3_alt	= "design/build landscaping";
}

function turnOn(imageName) {
 if (document.images) {
 document[imageName].src = eval(imageName + "on.src");
 document[imageName].alt = eval(imageName + "_alt");
 }

}

function turnOff(imageName) {
 if (document.images) {
 document[imageName].src = eval(imageName + "off.src");

 }

}

function Start(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resize=yes");


}

// -->




// COPYRIGHT FUNCTION

function showCopyright()


{


var d = new Date()
document.write("&copy; ");
document.write(d.getFullYear())
document.write(" Chapel Valley Landscape Company. All Rights Reserved.");


}

// PRINT PAGE


<!-- Begin
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}
//  End -->
