//pop ups
$(document).ready( function() {   
    $('a[rel="pop"]').click( function() {
        window.open( $(this).attr('href'),'name','height=520,width=620, toolbar=yes,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes' );
        return false;
		});
});
