function eyefi_checkBrowser(){ /* simple version */
	this.ver=navigator.appVersion; this.dom=document.getElementById?1:0;
	this.mac=(this.ver.indexOf("PPC")!= -1)?1:0;	this.win=(this.ver.indexOf("Win")!= -1)?1:0;
	this.ie5up=(this.ver.indexOf("MSIE") && this.dom && parseInt(this.ver) >= 4) ?1:0;
	this.ie4=(document.all && !this.dom)?1:0; this.ie=(this.ie5up || this.ie4);
	this.ns5up=(this.ver.indexOf("MOZILLA") && this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0; this.ns=(this.ns4 || this.ns5up);
	return this;
}
eyefi = new eyefi_checkBrowser();
document.write('<style>');
if (eyefi.ns4) {
	document.write('.box {	font-family: verdana, arial;color: #FF0000; font-size: 12px;width:107px; text-align: center;}');
	document.write('.box2 {	font-family: verdana, arial;color: #000000; font-size: 12px;width:195px; text-align: center;}');
} else {
	document.write('.box { font:normal normal 10px Verdana, Arial; color: #000000; border:1px solid #d1d4ce; width:107px; background-color:#ffffff; }');
	document.write('.box2 { font:normal normal 10px Verdana, Arial; color: #000000; border:1px solid #d1d4ce; width:195px; background-color:#ffffff; }');
}
document.write('</style>');
