// JavaScript Document

var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{
			string: navigator.userAgent,
			subString: "Chrome",
			identity: "Chrome"
		},
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari",
			versionSearch: "Version"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			   string: navigator.userAgent,
			   subString: "iPhone",
			   identity: "iPhone/iPod"
	    },
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();


function showx(content)
{
    BC = BrowserDetect.browser ;
	
	if(document.getElementById('cloneX'))
    {
        
        document.getElementById('ancor').removeChild(document.getElementById('cloneX'));
        return ;
    }
    var nobj= document.createElement("div");
    nobj.id = "cloneX";
    nobj.style.width = "150px" ;
    nobj.style.height = "200px" ;
    nobj.style.position = 'absolute' ;
// lext line, skip it in firefox
    if(BC=='Explorer')
	{
		nobj.style.top = '40px' ;
	}
    nobj.style.left = '305px' ;
    nobj.style.overflow = "auto";
    nobj.style.fontFamily = 'Arial' ;
    nobj.style.fontWeight = "normal";
    nobj.style.backgroundColor = "#A5A5A5";
    nobj.style.fontSize = "11px" ;
    nobj.style.color = "#FFFFFF";
    nobj.style.padding = '10px';
    nobj.style.overflowY = 'scroll' ;
// next line is not compatible with windows explorer
    if(BC!='Explorer')
	{
	    nobj.style.overflow = "-moz-scrollbars-vertical" ;    
	}
	nobj.innerHTML = content ;

    var li = nobj.getElementsByTagName('a');
    for(i=0;i<li.length;i++) 
    {
        li[i].style.textDecoration = "none" ;
		li[i].style.fontWeight = "normal";
        li[i].style.color = "#FFFFFF" ;
    }
        
    var li = nobj.getElementsByTagName('li');
    for(i=0;i<li.length;i++) 
    {
        li[i].style.textAlign = "right" ; 
        li[i].style.paddingTop = "2px" ;
		li[i].style.fontWeight = "normal";
		li[i].style.color = "#FFFFFF";
        li[i].style.listStyleImage = "url('http://www.louer.com/a-images/blank.gif')" ;
    }    

    document.getElementById('ancor').appendChild(nobj);
//    document.body.appendChild(nobj); 
}