/********
This script adjusts the stylesheets for IE4 and NS5 and above.
NS4 was getting bugs when these styles were declared in the stylesheet.
Make sure the browsercheck.js file is included before this file in any page you need to use it.
-Tom
********/

if (!bw.ns4) {
	// fix styles
	oStylesheet = document.styleSheets[0];
	oRules = (bw.ns6)? oStylesheet.cssRules : oStylesheet.rules;

	oRules[3].style.border = "1px #00205A solid"; // inputs
	oRules[4].style.border = "1px #00205A solid"; // inputs_buttons
	oRules[6].style.border = "1px #00205A solid"; // inputs_main
	oRules[10].style.border = "1px #00205A solid"; // inputs_multiline_main
	oRules[11].style.border = "1px #00205A solid"; // inputs_buttons_needhelp_main


} else {
	// do nothing
}

