SELECT DISTINCT li_cat_en FROM links_tbl ORDER BY li_cat_en SELECT * FROM links_tbl WHERE li_cat_en = '#url.cat#' ORDER BY li_text_en Breast-ultrasound.com /** * This function takes URLs in a text string and turns them into links. * Version 1 by Lucas Sherwood, lucas@thebitbucket.net. * * @param string Text to parse. (Required) * @param target Optional target for links. Defaults to "". (Optional) * @param paragraph Optionally add paragraphFormat to returned string. (Optional) * @return Returns a string. * @author Joel Mueller (jmueller@swiftk.com) * @version 2, August 9, 2002 */ function ActivateURL(string) { var nextMatch = 1; var objMatch = ""; var outstring = ""; var thisURL = ""; var thisLink = ""; var target = "_blank"; var paragraph = IIf(arrayLen(arguments) gte 3, "arguments[3]", DE("false")); do { objMatch = REFindNoCase("(((https?:|ftp:|gopher:)\/\/)|(www\.|ftp\.))[-[:alnum:]\?%,\.\/&##!@:=\+~_]+[A-Za-z0-9\/]", string, nextMatch, true); if (objMatch.pos[1] GT nextMatch OR objMatch.pos[1] EQ nextMatch) { outString = outString & Mid(String, nextMatch, objMatch.pos[1] - nextMatch); } else { outString = outString & Mid(String, nextMatch, Len(string)); } nextMatch = objMatch.pos[1] + objMatch.len[1]; if (ArrayLen(objMatch.pos) GT 1) { // If the preceding character is an @, assume this is an e-mail address // (for addresses like admin@ftp.cdrom.com) if (Compare(Mid(String, Max(objMatch.pos[1] - 1, 1), 1), "@") NEQ 0) { thisURL = Mid(String, objMatch.pos[1], objMatch.len[1]); thisLink = "" & thisURL & ""; outString = outString & thisLink; // String = Replace(String, thisURL, thisLink); // nextMatch = nextMatch + Len(thisURL); } else { outString = outString & Mid(String, objMatch.pos[1], objMatch.len[1]); } } } while (nextMatch GT 0); // Now turn e-mail addresses into mailto: links. outString = REReplace(outString, "([[:alnum:]_\.\-]+@([[:alnum:]_\.\-]+\.)+[[:alpha:]]{2,4})", "\1", "ALL"); if (paragraph) { outString = ParagraphFormat(outString); } return outString; }


The following list contains links to relevant Web sites that will assist you to reach important information available on the World Wide Web. You can always suggest links to be included here by using our feedback form.

#li_cat_en#
 
#ActivateURL(li_url)#
#li_text_en#
 
 
  #li_cat_en#