function openImg(pic, img){
  opened = window.open("","none","top=100, left=100, width="+img.width+", height="+img.height+", resizable=0, scrollbars=yes","replace=yes"); 
  opened.document.open(); 
  opened.document.write(
  '<body leftmargin=0 topmargin=0 bgcolor="black" width="100%" height="100%"><img src="'+pic+'" align="center" onclick="window.close();"></body>');  
  opened.document.close();    
}

function showPic(pic){ 	
  img = new Image();
  img.src = pic;   
  img.onload = openImg(pic, img);
} 

$(document).ready(function() {	
	$("a#single_image").fancybox();	
});

