function openpict(title,path,height)
    { 
    attr = "top=100,left=60,bottom=0,right=0,width=900,height="+height;
    window.open(path, title, attr);
    }
    
function opencert(title,path,width,height)
    { 
    attr = "top=100,left=60,bottom=0,right=0,width="+width+",height="+height;
    window.open(path, title, attr);
    }