<!--  
//***************************************
//This script detects browsers and feeds the appropriate stylesheet.
	if (document.all) { 
	    // Internet Explorer
    	document.write('<link rel="stylesheet" type="text/css" href="main.css">');
		document.write('</head>')
		document.write('<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">');
	} 	
	else if (document.layers) { 
	    // Netscape
    	document.write('<link rel="stylesheet" type="text/css" href="main-ns.css">');
		document.write('</head>')
		document.write('<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" link="#CB667F" vlink="#4C4C7E" alink="#CB667F">');
	} 
	else if (document.getElementById) { 
	    // Netscape 6
    	document.write('<link rel="stylesheet" type="text/css" href="main-ns6.css">');
		document.write('</head>')
		document.write('<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">');
	} else {
		// Other
		document.write('<link rel="stylesheet" type="text/css" href="main.css">');
		document.write('</head>')
		document.write('<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" bgcolor="white">');
	}
//-->

<!--
//***************************************
//this is for "back" buttons throughout the website.
function goback() {   
	history.back(1)
	}
	

//***************************************	
//This is for the inquiry/quote/survey pages to prevent duplicate submissions when visitor presses "enter."
function generic_submit (form) {        
	form.submit ();
}


//***************************************	
// This is for popup windows throughout the website.        
function openAWindow( pageToLoad, winName, width, height,          
center) 
{ 

xposition=0; yposition=0;
if ((parseInt(navigator.appVersion) >= 4 ) &&
(center)){
xposition = (screen.width - width) / 0;
yposition = (screen.height - height) / 0; 

} 

args = "width=" + width + "," 
+ "height=" + height + "," 
+ "location=0," 
+ "menubar=0,"
+ "resizable=1,"
+ "scrollbars=0,"
+ "status=0," 
+ "titlebar=0,"
+ "toolbar=0,"
+ "hotkeys=0,"
+ "screenx=" + xposition + "100," //NN Only
+ "screeny=" + yposition + "100," //NN Only
+ "left=" + xposition + "100," //IE Only
+ "top=" + yposition + "100,"//IE Only 

window.open( pageToLoad,winName,args ); 


} 

//-->

