/*--------------------------------------------

FUNCTION

Detect browser user is viewing page with

---------------------------------------------*/



	//find browser name

	var browserName = navigator.appName;





	//detect if using Internet Explorer

	if (browserName == "Microsoft Internet Explorer") {



		//load IE corresponding CSS

		document.write ("<link rel=stylesheet type='text/css' href='http://altecelectronicsystems.com/css/stylesheetIE1.css'>");

	}









	//detect if using mozilla or netscape

	if (browserName == "Netscape") {



		//load IE corresponding CSS

		document.write ("<link rel=stylesheet type='text/css' href='http://altecelectronicsystems.com/css/stylesheetNS1.css'>");

	}









	//detect if using other browser

	if (browserName != "Netscape" && browserName != "Microsoft Internet Explorer") {



		//load IE corresponding CSS

		document.write ("<link rel=stylesheet type='text/css' href='http://altecelectronicsystems.com/css/stylesheetIE1.css'>");

	}