If you disable hyper link its just becomes normal text right? If you want to open a page on some condition write a java script function and call it from href. If the condition satisfied you open page otherwise just do nothing.
and function: function openPage() { if(some conditon) opener.document.location = "http://www.google.com"; } else{ // nothing, this else not required } }
hope it is helpful to you [ February 24, 2006: Message edited by: KJ Reddy ]