function openGross(name){    
	width = 780;
	height = 550;
	Gross =window.open(name+'&ppid=5','Picture','width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left='+((screen.width-width)/2)+',top='+((screen.height-height)/2));
  setTimeout("Gross.focus()",100);
}			  
function showPic(name){  
  name2 = 'index.php?tt_gross='+name;  
	width = 780;
	height = 550;
	Gross =window.open(name2+'&ppid=5','Picture','width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left='+((screen.width-width)/2)+',top='+((screen.height-height)/2));
  setTimeout("Gross.focus()",100);		
}			  
function openPrint(name){    
  width = 500;
	height = 550;
	Print =window.open(''+name+'&tt_printversion=on','Print','width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left='+((screen.width-width)/2)+',top='+((screen.height-height)/2));
  setTimeout("Print.focus()",100);
}			   
function TTWindowOpen(http,width,height){ 
  f1=window.open(http,'','width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left='+((screen.width-width)/2)+',top='+((screen.height-height)/2));
  setTimeout("f1.focus()",100);
}			
function tt_showBox(elementid,display){
  if (typeof(display)=="undefined"){
    if(document.getElementById(elementid).style.display=='none')
    {
     document.getElementById(elementid).style.display='block';
    }else{
     document.getElementById(elementid).style.display='none';
    }
  }else{
     document.getElementById(elementid).style.display=display;
  }
} 