
var copytoclip=1
function HighlightAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&&copytoclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Contents highlighted and copied to clipboard!"
setTimeout("window.status=''",2400);
}
}

function highlight(field) {
   field.focus();
     field.select();
}

function favorites(url,title){
if(document.all)
null; (url,title)
}

function validateForm(theForm)
{

      if (theForm.name.value=="" ||theForm.email.value=="" ||theForm.idea.value=="") {
      alert("The form isn't filled out completely. Please fill it out to completion.");
      return false;
   }


}