function fcusa(){
document.s.q.focus();
}
window.onload = fcusa;
function sdmail(d) {
if (document.getElementById){
eml = document.getElementById(d);
if (eml.style.display == ""){ eml.style.display = "block";}
else if (eml.style.display == "block") { eml.style.display = "";  }
}
}
function selc(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand("Copy")
}
function sel(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
}