<!--
NS4 = (document.layers) ? 1 : 0; 
IE4 = (document.all) ? 1 : 0; 
ver4 = (NS4 || IE4) ? 1 : 0; 
is_nn7 = (navigator.product == 'Gecko') ? 1 : 0;
isMac = (navigator.appVersion.indexOf("Mac") != -1) ? 1 : 0;
isTrans = (NS4 || (IE4 && !isMac)) ? 1 : 0;
function MM_openBrWindow(theURL,winName,features) { //v1.2
  window.open(theURL,winName,features);
}
//-->
function open_base(mypage,w,h,fe1,fe2,myname,fe3,fe4,fe5,fe6){
var scroll='yes';
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings);
win.focus();
}
function fullwin(targeturl){
window.open(targeturl,"","fullscreen,scrollbars")
}
function doTrans(el,transNo,dur,doup) {
    whichEl = eval(el);
    transNo = parseInt(transNo);
doTransIE(whichEl,transNo,dur,doup);
} 
function doTransIE(whichEl,transNo,dur,doup) {
    whichEl.style.filter = "BlendTrans(duration=" + dur + ")";
    endState = "hidden";
if (doup == "up") {
            endState = "visible";
            whichEl.style.visibility="hidden";
    }

  whichEl.onfilterchange = clearFilt;
    whichEl.filters.BlendTrans.apply();
        whichEl.style.visibility = endState;
    whichEl.filters.BlendTrans.play();

}
function clearFilt() { 
whichEl.style.filter=""; 
}

