function SubmitSearchForm( ) {
if ( document.searchForm.searchtext.value.length == 0 ) {
return false;
}
return true;
}
function wo(link,ww,hh,title) {
w=window.open(link,'',(ww ? 'width='+ww+',' : '')+(hh ? 'height='+hh+',' : '')+'toolbar=0,scrollbars=0,resizable');
if (link.indexOf('.html')==-1) {
if (document.layers) title='';
w.document.open();
w.document.write('
'+title+'');
w.document.write('');
w.document.close();
}
w.focus();
}
var stripe = function() {
var tables = document.getElementsByTagName("table");
for(var x=0;x!=tables.length;x++){
var table = tables[x];
if (! table) { return; }
if ( table.className == 'tbl' ) {
var tbodies = table.getElementsByTagName("tbody");
for (var h = 0; h < tbodies.length; h++) {
var even = true;
var trs = tbodies[h].getElementsByTagName("tr");
for (var i = 0; i < trs.length; i++) {
trs[i].onmouseover=function(){
this.className += " ruled"; return false
}
trs[i].onmouseout=function(){
this.className = this.className.replace("ruled", ""); return false
}
if(even)
trs[i].className += " even";
even = !even;
}
}
}
}
}
window.onload = stripe;