function imagepage(src,info) {
  w = window.open('', 'Film',"status=0,toolbar=0,width=700,height=600");
  w.document.write('<img width="100%" style="max-height: 80%;" src="'+src+'"/>');
  w.document.write('<p style="font-family: verdana, arial, helvetica, sans serif; font-weight: bold;">'+info+'</p>');
  w.document.close();
}


$(document).ready(function(){
  $(".thumbnail a").click(function(event){
    imagepage(this.href, $(this).parent().children("small").children("strong").text())
    return false
  });
});
