
var popWindowParams = 'status=no,toolbar=no,scrollbars=yes,resizable=yes,width=670,height=500,top=10,left=10';

jQuery(document).ready(function($)
{
	$("a.popWindow").live('click',function(event)
	{
		var url_to_open = $(this).attr('href');

		window.open(url_to_open, 'popWindow', popWindowParams);

		event.preventDefault();
	});

});