/* GKV GLOBAL JAVASCRIPT */

/* ------> INIT - FOR FUNCTIONS THAT CAN'T WAIT FOR THE PAGE TO LOAD */
function init() {
	if (document.getElementById('content').offsetHeight<435) {
			document.getElementById('content').style.height=435 + "px";
	}
	
	/* TO ELEVIATE THE IE BACKGROUND IMAGE FLICKER ON THE NAV */
	try {
  		document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
	
	
}
//window.onload=init();

var navEl=null;
function navOn(el) {
	if (navEl!==null) {
		navOff(navEl);	/* CLEAR ANY ACTIVE ONES */
	}
	document.getElementById(el).className= el + '_active';
	navEl=el;
}
function navOff(el) {
	document.getElementById(el).className=el;
}



function fixedWin(fileName) {

     myWin = window.open('','myWindow','scrollbars=no,directories=no,status=no,resizable=no,toolbar=no,copyhistory=no,location=no,menubar=no,width=956,height=450,scrollbars=no,top=0,left=0')

     myWin.location.href = fileName;

}
