jQuery.noConflict();

jQuery(document).ready (function(){
	jQuery('.popUp').each(function(){
		var href = jQuery(this).attr('href');
		jQuery(this).attr('href', '#').click(function(){
			popUp(href, 290, 310);
			return false;
		});
	});
	jQuery('.popUp2').each(function(){
		var href = jQuery(this).attr('href');
		jQuery(this).attr('href', '#').click(function(){
			popUp(href, 541, 446);
			return false;
		});
	});
});

function popUp(url, width, height) {
	window.open(url, 'ballotWindow', 'status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,height=' + height + ',width=' + width);
}