function roll_over(img_name, img_src) {
    document[img_name].src = img_src;
}



function clearText() {
    if (document.Form1.txtFrom.value == "name@company.com")
        document.Form1.txtFrom.value = ""

}
function resetText() {
    if (document.Form1.txtFrom.value == "")
        document.Form1.txtFrom.value = "name@company.com"
}     

        