// JavaScript Document
$(document).ready(function() { 
						   
	$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href'), "mywindow","menubar=0,scrollbars=1,resizable=1,width=650,height=500" );
        return false;
    });


});