select "a" tag with attribute"rel"

select "a" tag with attribute"rel"

here is my html
<a id="ctrl2" href="'>web-link1</a>
<a rel="300;500;modal;head; http://www.gmail.com" id="ctrl1" href="">web link2</a>
 
requirement
select "a" tag that has "rel" attribute.  get the values within rel and show modal
 
here is the code
$('a[rel]').click(function()
{
callform($(this).attr("rel"),'Required Fields');
});
 
function callform(PArel, lbltxt)
{
var htt=PArel.split(;);
if(htt[2]=='modal')
{
........
}
......
}
 
 
 
its not picking a with rel....................Any help will be highly appreciated