// JavaScript Document
jQuery.fn.extend({
	linkIndic: function(){
		var $this = $(this);
		var $id = $this.attr("rel");
		var $url = $this.attr("href");
		
		var popup = {height: 335, width: 405}
		popup.top = ((screen.height-popup.height)/2)
		popup.left = ((screen.width-popup.width)/2)
		
		params = "top="+popup.top+", left="+popup.left+", height="+popup.height+", width="+popup.width;
		
		$this.click(function(){
			window.open('http://www.linkws.com/webservices/li/link_indic.jsp?userProductID='+$id+'&url='+$url, "indic"+$id, params);
			return false;
		})
	}
})
