function changeLink(linkId,jsCode){
	if (document.getElementById){
		if (document.getElementById(linkId)){
		    myLink=document.getElementById(linkId);
			if (myLink.attributes.getNamedItem("href")){
		        myLink.attributes.href.value="#";
			}
			if (myLink.attributes.getNamedItem("target")){
		        myLink.attributes.target.value="";
			}
		}
	}
}

