
$(document).ready(function() {  
	$('#affiliate tr').click(function() {
		
        var href = $(this).find("a").attr("href");
        var target = $(this).find("a").attr("target");
				if (target){
					 					newwnd = window.open(href, target);
				}else
	        if(href) {
						str = href.replace('http://', '')
						str = str.replace(/[.]/g,"");


            newwnd = window.open(href, str);
            newwnd.focus();    
  					alert("test");
        }
	});
})  
