var loc = window.location.href;
pos = loc.indexOf('?');
if (pos > -1) {
var keywords = loc.substring (pos + 1, loc.length);
newloc = '/' + 'cgi-bin' + '/' + 'redirectplace.cgi?' + keywords;
setTimeout ('window.location = newloc', 0);
}

