<!---
if (document.images) {

    img1on = new Image(); 
    img1on.src = "/fx/nav/about-on.gif";
    img1off = new Image(); 
    img1off.src = "/fx/nav/about-off.gif";

    img2on = new Image(); 
    img2on.src = "/fx/nav/molds-on.gif";
    img2off = new Image(); 
    img2off.src = "/fx/nav/molds-off.gif";

    img3on = new Image(); 
    img3on.src = "/fx/nav/plugs-on.gif";
    img3off = new Image(); 
    img3off.src = "/fx/nav/plugs-off.gif";

    img4on = new Image(); 
    img4on.src = "/fx/nav/ordering-on.gif";
    img4off = new Image(); 
    img4off.src = "/fx/nav/ordering-off.gif";

    img5on = new Image(); 
    img5on.src = "/fx/nav/micro-on.gif";
    img5off = new Image(); 
    img5off.src = "/fx/nav/micro-off.gif";

    img6on = new Image(); 
    img6on.src = "/fx/nav/contact-on.gif";
    img6off = new Image(); 
    img6off.src = "/fx/nav/contact-off.gif";

}
    function imgOn(imgName) {
        if (document.images) {
           document[imgName].src = eval(imgName + "on.src");
       }
}
    function imgOff(imgName) {
        if (document.images) {
           document[imgName].src = eval(imgName + "off.src");
	   }
}  


function CheckForm(frm) {
	var ErrorMsg = ""

	if(frm.email.value == "")
		ErrorMsg += ' + E-mail address is blank.\n';
	else if(frm.email.value.indexOf("@") == -1)
		ErrorMsg += ' + E-mail address is invalid.\n';

	if(frm.comments.value == "")
		ErrorMsg += ' + Message body is blank.\n';

	if(ErrorMsg != "") {
		ErrorMsg = "Mail cannot be sent because:\n" + ErrorMsg + "\nPlease correct before sending.";
		alert(ErrorMsg);
		return false;
	}
	else
		return true;
}

function OpenWindow(thePage) {
	OpenWin=window.open(thePage,'print','scrollbars,width=600,height=400')
}

// -->
	
