// JavaScript Document


<!-- hide me
if (document.images) {

  buttonon = new Image();
  buttonon.src = "images/button0n.gif";
  buttonoff = new Image();
  buttonoff.src = "images/button0ff.gif";
  
  emailon = new Image();
  emailon.src = "images/email2.gif";
  emailoff = new Image();
  emailoff.src = "images/email.gif";
    
  tv1on = new Image();
  tv1on.src = "/images/portfolio/tv/tv1_.jpg";
  tv1off = new Image();
  tv1off.src = "/images/portfolio/tv/tv1.jpg";  
  
  tv2on = new Image();
  tv2on.src = "/images/portfolio/tv/tv2_.jpg";
  tv2off = new Image();
  tv2off.src = "/images/portfolio/tv/tv2.jpg";
  
  radio1on = new Image();
  radio1on.src = "/images/portfolio/radio/radio1_.jpg";
  radio1off = new Image();
  radio1off.src = "/images/portfolio/radio/radio1.jpg";
  
  radio2on = new Image();
  radio2on.src = "/images/portfolio/radio/radio2_.jpg";
  radio2off = new Image();
  radio2off.src = "/images/portfolio/radio/radio2.jpg";
}
function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}
function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}
// -->





<!-- Begin
function validate(){
//var digits="0123456789"
//var temp
//if (document.theform.specs.value=="") {
//alert("Please enter some information about your project!")
//return false
//}
if (document.theform.Name.value=="") {
alert("Please include your name")
return false
}
if (document.theform.Last.value=="") {
alert("Please include your name")
return false
}
if (document.theform.Email.value=="") {
alert("Please Enter a Valid E-mail Address")
return false
}
return true
}
// End -->