<!--
function opens(images, target, width, height){
  if(images=="" || images==null) return false;
  if(target=="" || target==null) var target="_blank";
  if(width=="" || width==null) var width = screen.availWidth/1.5;
  if(height=="" || height==null) var height = screen.availHeight/1.5;
  width=width+100; height=height+180;
  width=820; height=620;
  window.open(images,target,"width="+width+",height="+height+",menubar=no,toolbar=no,status=no,location=no,scrollbars=yes,fullscreen=no,directories=no,resizable=yes");
  return false;
}
-->
