<!--
function viewpic(href, x, y) {
       var scroll = "no";
       var aw = screen.availwidth;
       var ah = screen.availheight;

       if (aw==null) aw = screen.width;
       if (ah==null) ah = screen.height - 35;

         y = y + 45;

         x = x ;

       if (aw < x) {
         x = aw;
         scroll = "yes";
         y = y + 20;
       }

       if (ah-35 < y) {
         y = ah-35;
         scroll = "yes";
         x = x + 20;
       }

       var left = (aw - x) / 2;
       var  top = (ah - y) / 2 - 15;
       
var
OpenWindow=window.open(href,'OpenWindow','width='+x+',height='+y+',left='+left+',top='+top+',scrollbars='+scroll+', resizable=YES, dependent=YES');
OpenWindow.focus();
    } 
function jumpMenu(targ,selObj,restore){ //v3.0 
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); 
if (restore) selObj.selectedIndex=0; 
} 
//-->