// JavaScript Document
function fullimage(imageid){
   leftPos = (screen.width) ? (screen.width-600)/2 : 0;
   topPos = (screen.height) ? (screen.height-450)/2 : 0;
   window.open('fullimage.php?image=' + imageid, '', 'width=600,height=450,top='+topPos+',left='+leftPos+',toolbar=0,directories=0,menubar=0,status=0,resizable=1,location=0,scrollbars=1,copyhistory=0');
   return;
}
