// Initializes a new instance of the StringBuilder class
// and appends the given value if supplied
function StringBuilder(value)
{
    this.strings = new Array("");
    this.append(value);
}

// Appends the given value to the end of this instance.
StringBuilder.prototype.append = function (value)
{
    if (value)
    {
        this.strings.push(value);
    }
}

// Clears the string buffer
StringBuilder.prototype.clear = function ()
{
    this.strings.length = 1;
}

// Converts this instance to a String.
StringBuilder.prototype.toString = function ()
{
    return this.strings.join("");
}

/*
sprach parameter
0 = alle
1 = de
2 = en
*/

var ___language = "en";
if (navigator.appName == 'Netscape')
	___language = navigator.language;
else
	___language = navigator.browserLanguage;

if (___language.indexOf("de") == -1)
	___language = "en";
//{"Url":"http://www.footfetish-pics.com","Img":"fp.jpg", "Lang" : "0"},
var ___arr_oursites = eval('([{"Url":"http://www.nylonsmelling.com","Img":"ns.jpg","Lang" : "0"}, {"Url":"http://www.girlsfeet4you.com","Img":"gf.jpg", "Lang" : "0"}, {"Url":"http://www.sexy-chantal.com","Img":"sexyc.jpg", "Lang" : "0"}])');


var ___oursites_imgpath = "http://www.feet-shop.com/_oursites/img/";
var ___oursites_currend_url = document.URL.replace("http://", "").replace("www.", "");
if (___oursites_currend_url.indexOf("/") > -1)
	___oursites_currend_url = ___oursites_currend_url.split("/")[0];
	

var ___sb__oursites = new StringBuilder();
___sb__oursites.append('<div style="padding:5px;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:10px;color:#' + __os_txtcol + ';background-color:#' + __os_bgcol + ';width:' + (__os_bgcolumns*214) + 'px;">');
___sb__oursites.append('	<div style="font-size:12px;font-weight:bold;text-align:center;">Visit also our other Sites</div>');

for (i = 0; i < ___arr_oursites.length; i++)
{
	if (___oursites_currend_url == ___arr_oursites[i].Url.replace("http://www.", "").replace("/index.php","")) // && ___oursites_currend_url.indexOf("fussduft.at") == -1)
		continue;		
	
	if((___arr_oursites[i].Lang == 1 && ___language.indexOf("de") == -1) || (___arr_oursites[i].Lang == 2 && ___language.indexOf("en") == -1))
		continue;
	
	nUrlDisplay = ___arr_oursites[i].Url.replace("http://", "").replace("/default.html","");
	if (nUrlDisplay.indexOf("/") > -1)
		nUrlDisplay = nUrlDisplay.split("/")[0];
		
	___sb__oursites.append('	<div style="float:left;width:200px;height: 220px;border:#ccc 1px solid;text-align:center;margin:5px;">');
	___sb__oursites.append('		<div class="pImg"><a href="' + ___arr_oursites[i].Url + '" target="_blank"><img src="' + ___oursites_imgpath + ___arr_oursites[i].Img + '" width="200" height="200" alt="' + ___arr_oursites[i].Url.replace("http://", "") + '" title="' + ___arr_oursites[i].Url.replace("http://", "") + '" border="0" /></a></div>');
	___sb__oursites.append('		<div><a style="margin-top:3px;display:block;text-decoration:none;color:#' + __os_txtcol + ';" href="' + ___arr_oursites[i].Url + '" target="_blank">' + nUrlDisplay + '</a></div>');
	___sb__oursites.append('	</div>');
	
}
___sb__oursites.append('<div style="clear:left;"></div></div>');


document.writeln(___sb__oursites.toString());





