//This function user for detect the browser, ie., IE, Nerscafe, FireFox, etc.,
function bV() {
	var doc=window.document;
	var nV=navigator.appVersion.toLowerCase();
	this.ie4=(!doc.getElementById&&doc.all)?true:false;
	this.ie5=(nV.indexOf("msie 5.0")!=-1)?true:false;
	this.ie55=(nV.indexOf("msie 5.5")!=-1)?true:false;
	this.ie6=(nV.indexOf("msie 6.0")!=-1)?true:false;
	this.isIE=(this.ie5||this.ie55||this.ie6)?true:false;
	this.isGecko=!this.isIE;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//initialising the browser detection
var mB = new bV();

if (mB.isIE) {
		document.write('<style>input { font-size:14px; background-image:url("images/icons/bg4Input.jpg"); background-repeat:repeat-x}');
		document.write('input { border: expression((this.type=="checkbox" || this.type=="radio")  ? "0px" : "1px solid #7E684F"); }');
		document.write('input { background-color: expression((this.type=="checkbox" || this.type=="radio")  ? "" : "#F0F0F0"); }</style>');
	} else {
		document.write('<style>input { font-size:14px; background-image:url("images/icons/bg4Input.jpg"); background-repeat:repeat-x;');
		document.write('border: 1px solid #7E684F; background-color: #F0F0F0}</style>');
	}