// JavaScript Document
function Popup(url, width, height) {
  window.open(url, 'popup', 'scrollbars=yes,resizable=yes,width='+width+',height='+height);
}


function showOriginalPicRes(url,width,height){
 var width = width + 20;
 var height = height + 30;
 window.open(""+url, "Hegenloh", "width="+width+",height="+height+",left=250,top=150,screenX=250,screenY=150,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
}
