function checkBrowser()
{
	this.ver=navigator.appVersion
	this.parsedVer = parseInt(this.ver);
	this.dom=document.getElementById?1:0
	this.ie6=( (this.ver.indexOf("MSIE 6")>-1) && this.dom)?1:0;
	this.ie5=( (this.ver.indexOf("MSIE 5")>-1) && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
	return this
}

var bw=new checkBrowser()
if (bw.ie4==1 || bw.ie5==1 || bw.ie6==1 )
    {document.write('<link rel="stylesheet" href="html/js/lmail.css.php" type="text/css">')}
else if (bw.ns4==1 || bw.ns5==1 || bw.ns6==1 )
    {document.write('<link rel="stylesheet" href="html/js/lmail.css.php" type="text/css">')}
else
    {document.write('<link rel="stylesheet" href="html/js/lmail.css.php" type="text/css">')}

