ie = navigator.appName;

//frame bottom
function over(nav)
		{
   	         nav.style.cursor='hand';
			 //nav.style.color='#ffffff';
			 nav.style.backgroundColor='#3F599D';
         }

function out(nav)
         {
			 nav.style.cursor='hand';
             //nav.style.color='#ffffff';
	          nav.style.backgroundColor='#1B3884';
			 window.status="";
         }

//Sitemap
function over_si(nav)
		{
   	         nav.style.cursor='hand';
			 nav.style.color='#1B3884';
			 nav.style.border=' solid 1px #F3F3F3';
			 nav.style.backgroundColor='#FeFeFe';
         }

function out_si(nav)
         {
			 nav.style.cursor='hand';
             nav.style.color='#4e4e4e';
	         nav.style.border=' solid 1px #ffffff';
			 nav.style.backgroundColor='#ffffff';
			 window.status="";
         }

function maincl(url){

		location.href = url ;
		}

function mainclfr(url){

		parent.main.location.href = url ;
		}

function opwind(winname,docurl,width,height,x,y)
		{
		winHandle = eval("open('"+docurl+"','"+winname+"','width="+width+",height="+height+",screenX="+x+",screen="+y+",')");
		winHandle.focus();
		if (ie) winHandle.moveTo(x,y);
		}	

