﻿// JScript File 
function moveover()   //mail to mouse over................
 {
  
 email.style.background = "white"
 email.innerText = "send mail...............>>"
 email.style.color = "green"
 email.style.textDecorationNone = "true"
 email.style.border = "ridge"
 email.style.borderColor = "green"
 email.style.borderWidth = "thin"
 
 
 }
 function moveout()   //mail to mouse out..................
 {
 email.style.background = "silver"
 email.style.color = "maroon"
 email.style.border = "none"
 email.innerText = "jlebr549@comcast.net"
 email.style.textDecorationUnderline = "true"
 }
 
