$(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;
	})
})