function high(which2){
theobject=which2;
highlighting=setInterval("highlightit(theobject)",50);
}
function low(which2){
clearInterval(highlighting);
which2.filters.alpha.opacity=50;
}
function highlightit(cur2){
if(cur2.filters.alpha.opacity < 100)
cur2.filters.alpha.opacity+=5
else if(window.highlighting)
clearInterval(highlighting)
}
function blockError(){
return true;
}
window.onerror = blockError;

document.write('<span class="small">&copy; ');
s_date = new Date();
var setYear = s_date.getYear();
if (setYear < 2000) setYear = 1900 + setYear ;
document.write(setYear);
document.write('&nbsp;</span><a href="http://www.mdmmd.com" target="_blank">');
document.write('<img src="rootimg/pglogo.gif" border=0 width=55 height=7 onmouseover="high(this)" style="FILTER: alpha(opacity=40); moz-opacity: 0.3" onmouseout="low(this)"></a><br>');


