$(document).ready(function(){
	// popup window
	$('.pop').popupWindow({ 
		centerScreen:1 
	});
	
	$('a.popwindow').click(function(event){
		event.preventDefault();
		var content = $(this).attr('title');
		
		function newWindow(content) {
			window.open('info.php?info='+content, 'info', 'left=500,top=400,width=700,height=120,toolbar=0,resizable=0');
		}
		
		newWindow(content);
		
	});
	
 });
