// JavaScript Document
	

$(document).ready(function() { 
				   
					   
    $('.showDiv').click(function() { 
        
				var msgDiv = $.ajax({
						url: "containerDiv.php?method=image&address="+this.href,
						async: false
					}).responseText;
		
		
					if(this.href != '#' && this.href != 'javascript:void(0);'){
							
							$.blockUI({  
								message: msgDiv,
								css: {  
									top:  ($(window).height() - 369) /2 + 'px', 
									left: ($(window).width() - 569) /2 + 'px', 
									width: '569px',
									border: '0px'
								}  
							});
							return false;
							
					}
					
	return false;
					
    });

});  
