//Script creates or overrides certain styles based on browser version.

       browserName=navigator.appName; 
       browserVer=parseInt(navigator.appVersion);
         if (browserName=="Netscape" && browserVer>=4) version = "NS4";
else version = "IE";

if (version == "NS4") 
{
document.write("<style type='text/css'>.ctrverdanashadow {font-size: 8pt; font-family: 'Century Gothic', 'Arial'; font-weight: normal; color: #0000CD; text-align: center; margin-left: 22px;margin-right: 22px;	padding-left: 0px; margin-bottom: 0px; margin-top: 0px; padding-right: 0px;} .verdelevenptblue  {font-size : 9pt; font-family : 'Verdana', 'Arial'; color : #000066; font-weight : bold;}</style>");
}

//Script shrinks font of some text to allow it to fit in lower resolution screens. 
if (screen.width<1000) versionb = "lowresolution"; else versionb = "highresolution";

if (versionb == "lowresolution") 
{
document.write("<style type='text/css'>.ctrverdanashadow {font-size: 7pt; font-family: 'Century Gothic', 'Arial'; font-weight: normal; color: #0000CD; text-align: center; margin-left: 21px;margin-right: 21px;	padding-left: 0px; margin-bottom: 0px; margin-top: 0px; padding-right: 0px;} .verdslatetenpt {	font-size : 9pt;font-family : 'Verdana', 'Arial';	margin-left : 30px;	margin-right : 20px;color : #2F4F4F; font-weight : bold;}</style>");
}

//Script enables highlighted text in MSIE 4+ using filters, and in Netscape 4+ and MSIE 3 using overlayed text; place tag in head section of HTML
browserName=navigator.appName; 
       browserVer=parseInt(navigator.appVersion);
          if ((browserName=="Netscape" && browserVer>=4) || (browserName=="Microsoft Internet Explorer" && browserVer==3)) versiona = "1";
else versiona = "2";
if (versiona == "1") 
{	
document.write("<style type='text/css'> .shadow {color : #330066; font-size  : 20px; font-family : 'Verdana', 'Arial'; font-weight : bold; margin-left : 5px;}   .highlight {margin-top : -40px; margin-left : 0px; color : #9999ff; font-size : 20px; font-family: Verdana, Arial, sans-serif ; font-weight : bold;}</style>");
}
if (versiona == "2") 
{document.write("<style type='text/css'>.shadow  {color : #9999ff;	filter : shadow(Color=#330066,Direction=135);padding : 5pt 12pt;height : 50;position : relative; left : 0; top : 0; font-size : 20pt; font-family : 'Verdana', 'Arial';}</style>");
}

//Script creates classname for disabled fields in order form

document.write("<style type='text/css'>.disabled_input  {border: none; font-size: 3pt; background-color: transparent; color:#F7F7B2;} .enabled_input  {color : black; background-color : white; font-size:7pt;} .enabled_input2  {border: none; color : black; background-color : transparent; font-size:7pt;}</style>");
