$(document).ready(function(){
	
	$('a.popup').click(function(){				
		window.open(this, "myWindow","scrollbars = 1, location = 1, status = 1, height = 600, width = 800, resizable = 1" );
		
		return false;					   
	});
	
});