//---- Set this variable only! ----
var buildDir = "../includes/";
//---------------------------------

var ie4 = false, ie5_mac = false, ie55 = false;
var nn4 = false, dom = false, opera = false, safari = false;
var agent = navigator.userAgent.toLowerCase();

if (agent.indexOf("opera") != -1)
	opera = true;
else if (agent.indexOf("safari") != -1)
	safari = true;
else if (document.all)
{
	var version = parseFloat(agent.substr(agent.indexOf("msie")+5, 3));
	if (agent.indexOf("mac") != -1 && version >= 5)
		ie5_mac = true;
	else
	{
		if (version >= 5.5)
			ie55 = true;
		else if (version >= 4)
			ie4 = true;
	}
}
//else if (document.layers)
else if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 4 && 
	parseInt(navigator.appVersion) < 5)
	nn4 = true;
else if (document.getElementById)
	dom = true;

var blank = new Image();
blank.src = buildDir + "blank.gif";

if (ie5_mac)
{
document.write('<style type="text/css">');
document.write('<!--');
document.write('p.body {font-size: 13 pt; font-family: arial; letter-spacing: 0px ;font-weight: normal; line-height: 135%;color: #000000}');
document.write('a.body {font-size: 13 pt; font-family: arial; letter-spacing: 0px ;font-weight: normal; line-height: 135%;color: #000000}');
document.write('a.header {font-family: arial; font-size: 150%; font-weight:bold;}');
document.write('a.sub_header {font-size: 14 pt; font-family: arial; letter-spacing: 0px ;font-weight: normal; line-height: 135%; color: #2c8924};');
document.write('p.header {font-size: 18 pt; font-family: arial; letter-spacing: 0px ;font-weight: bold; line-height: 145%; color: #000000}');
document.write('a:hover  {color: black;}');
document.write('p.bullet {font-size: 13 pt; font-family: arial; letter-spacing: 2px ;font-weight: normal ; color: #000000}');
document.write('a.bullet {font-size: 13 pt; font-family: arial; letter-spacing: 0px ;font-weight: normal; color: #000000}');
document.write('-->');
document.write('</style>');	
}
else
{ 

document.write('<style type="text/css">');
document.write('<!--');
document.write('p.subhead {font-size: 13 pt; font-family: arial; letter-spacing: 0px ;font-weight: normal; line-height: 125%;color: #000000;}');
document.write('p.body    {font-size: 10 pt; font-family: arial; letter-spacing: 0px ; font-weight: normal; line-height: 125%;color: #000000;}');
document.write('a.body    {font-size: 10 pt; font-family: arial; letter-spacing: 0px ; font-weight: normal; line-height: 125%;color: #000000;}');
document.write('a.header  {font-family: arial; font-size: 150%; font-weight:bold;}');
document.write('a.sub_header {font-family: arial; font-size: 100%; font-weight:bold;color:#2c8924;}');
document.write('p.header  {font-size: 18 pt; font-family: arial; letter-spacing: 0px ;font-weight: bold; line-height: 145%;color: #000000;}');
document.write('a:hover   {color:red;}');
document.write('a.link    {color: blue;}');
document.write('p.bullet  {font-size: 13 pt; font-family: arial; letter-spacing: 0px ;font-weight: normal;color: #000000; }');
document.write('a.bullet  {font-size: 8 pt; font-family: arial; letter-spacing: 1px ;font-weight: normal; color: #000000;}');
document.write('-->');
document.write('</style>');	
}

