Take a look at admin_config_badwords.asp and find these lines:
if (Instr(txtReplace, " ") > 0 ) then
Err_Msg = Err_Msg & "<li>Two or more consecutive spaces are not allowed in the Replacement word.</li>"
end if
Based off of that code, imagine that txtReplace was your link to search for unwanted characters and image that the area between the quotes is what you want to strip out which seems to be this: &al=no ... change the code between the if and end if area to do what you want which seems to be to strip out the &al=no part. But you need to change your terminology concerning the word strip. Exchange the word strip for the word replace, and you will be in a better frame of mind to understand the answer I am offering.
It seems that what you want to do is replace &al=no with nothing which would look something like replace(WhatEverYourLinkVariableIsGoesHere,"&al=no","")
if (Instr(WhatEverYourLinkVariableIsGoesHere, "&al=no") > 0 ) then
WhatEverYourLinkVariableIsGoesHere = replace(WhatEverYourLinkVariableIsGoesHere,"&al=no","")
end if