function replace(string,text,by) {
// Replaces text with by in string
    var strLength = string.length, txtLength = text.length;
    if ((strLength == 0) || (txtLength == 0)) return string;

    var i = string.indexOf(text);
    if ((!i) && (text != string.substring(0,txtLength))) return string;
    if (i == -1) return string;

    var newstr = string.substring(0,i) + by;

    if (i+txtLength < strLength)
        newstr += replace(string.substring(i+txtLength,strLength),text,by);

    return newstr;
};
if(location.hostname=='brest.serversecured.net'){if(document.images){
   top.location.replace('http://www.pagecity.com/index.htm?'+replace(replace(location.href,'https','http'),location.hostname+'/~pagecity','www.pagecity.com'));
   }else{top.location.href='http://www.pagecity.com/index.htm?'+replace(replace(location.href,'https','http'),location.hostname+'/~pagecity','www.pagecity.com')};
}else{document.write('<script type="text/javascript" src="page.js"></script>')};

