function openBig(pic, width, height) {
   if (!width) {
      width = 880;
   }
   
   if (!height) {
      height = 650;
   }

	window.open('viewpic.php?pic='+pic,'preview_pic','resizable=yes,scrollbars=yes,width='+width+',height='+height);
}	
