function openPicpop(img, width, height) {
   if (img && width && height) {
      width = Math.min(width + 36, 800);
      height = Math.min(height + 30, 600);
      var popUp = window.open(img,"popUp","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + width + ",height=" + height);
   }
   return;
}
function openCampop(URL,width,height) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+ width + ',height=' + height);");
}
