// browsercheck
var browser;
if ( window.navigator != null && window.navigator.userAgent.indexOf("ecko") != -1 ) {
	browser = "mozilla";
} 
if ( window.document.layers != null && browser != "mozilla" ) {
	browser = "netscape4";
}
if ( document.all ) {
	browser = "explorer";
}
