Forum Moderators: open
function seoRewriteUrl(rawUrl)
{
//just looking for the home page
if (rawUrl == null ¦¦ rawUrl == "" ¦¦ rawUrl == "/") {
return "";
}//only replace periods in the extenstion since they are used in the prices
rawUrl = rawUrl.replace('.aspx', '/shp/');
rawUrl = rawUrl.replace(/&/g, ','); //For Bug20702 - v-gaucha - Modified to replace all instances of '&' with ','
return rawUrl;
}