// Auto Resize the Window to fit the image's size
<!-- Begin
function AutoResize(img){
  boca1= new Image();
  boca1.src=(img);
  Control(img);
}
function Control(img){
  if((boca1.width!=0)&&(boca1.height!=0)){
    viewBoca(img);
  }
  else{
    bocaeye="Control('"+img+"')";
    interval=setTimeout(bocaeye,20);
  }
}
function viewBoca(img){
  long=boca1.width+10;
  tall=boca1.height+10;
  string="width="+long+",height="+tall;
  final=window.open(img,"",string);
}
//  End -->