function openBig(pic, width, height) {
   if (!width) {
      width = 1100;
   }
   
   if (!height) {
      height = 780;
   }

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

function openBig1(pic, width, height) {
   if (!width) {
      width = 1100;
   }
   
   if (!height) {
      height = 780;
   }

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

function toClipboard(id) {
    document.getElementById('holdtext').innerText = document.getElementById(id).innerText;
    Copied = document.getElementById('holdtext').createTextRange();
    Copied.execCommand("Copy");
}

