$(document).ready( function () {
//    $(".blank").append('&nbsp;<img src="img/blank.gif" border="0" />');
    $(".blank img").css("vertical-align","text-top");
//    $(".blank").after('&nbsp;');
    $('.blank').click(function(){
		if(this.href!=""){
			if(document.getElementById("lnk").className=="blank"){
				window.open(this.href, '_blank');
			}else{
				window.open(this.href, '_self');
			}
		}
        return false;
    });
});

