<!-- hide this script from non-javascript-enabled browsers

if (document.images) {
l_home = new Image(); l_home.src = "/img/l_home.gif";
lo_home = new Image(); lo_home.src = "/img/lo_home.gif";
}

/* Function that swaps images. */

function change(id, newSrc) {
    var theImage = FWFindImage(document, id, 0);
    if (theImage) {
        theImage.src = newSrc;
    }
}

/* Functions that track and set toggle group button states. */

function FWFindImage(doc, name, j) {
    var theImage = false;
    if (doc.images) {
        theImage = doc.images[name];
    }
    if (theImage) {
        return theImage;
    }
    if (doc.layers) {
        for (j = 0; j < doc.layers.length; j++) {
            theImage = FWFindImage(doc.layers[j].document, name, 0);
            if (theImage) {
                return (theImage);
            }
        }
    }
    return (false);
}


	function validEmail(email) {
	invalidChars = " /:,;"

	if (email == "") {
	//alert ("blank")
	//return false;
	}

	for (i=0; i<invalidChars.length; i++) {
		badChar = invalidChars.charAt(i)
		if (email.indexOf(badChar,0) > -1) {
			return false;
		}
	}
	
	
	atPosT = email.indexOf("@",1)
	if (atPosT == -1) {
		return false
	}
	
	if (email.indexOf("@",atPosT+1) > -1) {
		return false
	}
	
	periodPosT = email.indexOf(".",atPosT)
	if(periodPosT == -1) {
		return false
	}
	
	if (periodPosT+3 > email.length) {
		return false
	}

	return true;	
}
// stop hiding -->

function ChangeValue(strContent) {
	
	if (strContent.value == "Enter Description Here ") {
		strContent.value = "";
	}
	
}
