// This file checks to see what browser the user has launched.  If the browser is Netscape we must display
// a different style sheet.  If the browser is IE then we will display yet another style sheet.

var styleStr = "";
var browserName=navigator.appName;
function getCorrectCSS(){
	if (browserName.indexOf("Netscape") == 0){
		styleStr =  '<style type="text/css">'
		styleStr += '<!--'
		styleStr += '.style1 { color: #000000; font-weight: bold; font-family: Verdana; font-size: 12px; }'
		styleStr += '.style1 { color: #000000; font-weight: bold; font-family: Verdana; font-size: 12px; }'
		styleStr += '.style4 {color: #FF0000; font-weight: bold; }'
		styleStr += '.style5 { color: #000000; font-weight: bold; }'
		styleStr += '.style8 { font-family: "Times New Roman"; color: #00347E; font-size: 14px; }'
		styleStr += '.style9 { color: #00347E; font-family: "Times New Roman"; }'
		styleStr += '.style10 { color: #FF0000; font-weight: bold; font-size: 48px; }'

		styleStr += '.menuOut {cursor:pointer; margin:2px; color:#000000; width:141px; padding:2px; text-align:left; font-family:arial; font-weight:bold; font-size:12px;}'
		styleStr += '.menuOut a {FONT-WEIGHT: bold; TEXT-DECORATION: none}'
		styleStr += '.submenu {width:141px; font-family:arial; font-size:11px; padding-left:2px;}'
		styleStr += '.submenu a {color:#000080; text-decoration:none; font-weight:none;}'
		styleStr += '.submenu a:hover {color:#ff0000; text-decoration:none; font-style:none; font-weight:none;}'

		styleStr += 'body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; }'
		styleStr += '#cont { position:absolute; top:185px; left:0px; width: 145px; height: 131px; }' // left navigation position
		
		//styleStr += '#myPlayer { position:absolute; top;216px; left:130px;}'
		//styleStr += '#Player { position:absolute; top:216px; left:130px; }'                          ///////////////////////////////////////
		//styleStr += '#ccButtonArea { position:absolute; top:543px; left:130px; }'                    // Player, CC btn, and CC Text position
		//styleStr += '#ccText { position:absolute; top:563px; left:130px; }'                          ///////////////////////////////////////
		styleStr += '-->'
		styleStr += '</style>'
	}else{
		styleStr =  '<style type="text/css">'
		styleStr += '<!--'
		styleStr += '.style1 { color: #000000; font-weight: bold; font-family: Verdana; font-size: 14px; }'
		styleStr += '.style1 { color: #000000; font-weight: bold; font-family: Verdana; font-size: 14px; }'
		styleStr += '.style4 {color: #FF0000; font-weight: bold; }'
		styleStr += '.style5 { color: #000000; font-weight: bold; }'
		styleStr += '.style8 { font-family: "Times New Roman"; color: #00347E; font-size: 14px; }'
		styleStr += '.style9 { color: #00347E; font-family: "Times New Roman"; }'
		styleStr += '.style10 { color: #FF0000; font-weight: bold; font-size: 48px; }'

		styleStr += '.menuOut {cursor:pointer; margin:2px; color:#000000; width:145px; padding:2px; text-align:left; font-family:arial; font-weight:bold; font-size:12px;}'
		styleStr += '.menuOut a {FONT-WEIGHT: bold; TEXT-DECORATION: none}'
		styleStr += '.submenu {width:145px; font-family:arial; font-size:11px; padding-left:2px;}'
		styleStr += '.submenu a {color:#000080; text-decoration:none; font-weight:none;}'
		styleStr += '.submenu a:hover {color:#ff0000; text-decoration:none; font-style:none; font-weight:none;}'

		styleStr += 'body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; }'
		styleStr += '#cont { position:absolute; top:185px; left:0px; width: 145px; height: 131px; }'
		
		//styleStr += '#myPlayer { position:absolute; top;191px; left:130px;}'
		//styleStr += '#Player { position:absolute; top:191px; left:130px; }'
		//styleStr += '#ccButtonArea { position:absolute; top:518px; left:130px; }'
		//styleStr += '#ccText { position:absolute; top:538px; left:130px; }'
		styleStr += '-->'
		styleStr += '</style>'
	}
	return styleStr;
}