$(function()
{
    $('a.popup').click(function()
    {
       window.open(this.href, "win" , "width=700,height=500,scrollbars=YES");
	   return false;
    });
});