jQuery(function($){
	$('#visitsite a').click(function(){
		var win_width = screen.width;
  		var win_height = screen.height;
  		var win_top = 0;
  		var win_left = 0;
		window.open($(this).attr('href'),'howdoyouknow_'+Math.floor(Math.random()*11),'fullscreen=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+win_width+',height='+win_height+',top='+win_top+',left='+win_left);
		return false;
	});
});
function getAnchorAndAreaLinks(){ return $('a,area'); }
