$(document).ready(function()
{
	$('a[@id^=advclick]').click(function()
	{
		var aid = $(this).attr('id').replace(/advclick/g,'');
		$(this).attr('target','_blank');
		$(this).attr('href','/modules/adv/adv_click.php?id=' + aid);
		return true;
	})
})
