/* Copyright Digital:Idiom c 1999 - 2006 - Contact thewebteam @ digitalidiom.co.uk */


/* BROWSER CHECKS */
var ns4 = (document.layers);
var ie4 = (document.all && !document.getElementById);
var ie5 = (document.all && document.getElementById);
var ns6 = (!document.all && document.getElementById);


/* ====================================================== */
/* MENU HIGHLIGHTER Changes appearance of selected menu   */
/* item to indicate which page is being viewed */

function chgNavBar(id){
	// Netscape 4
	if(ns4){
		document.layers[id].color ="#99CC66";
	}
	// Explorer 4
	else if(ie4){
		document.all[id].style.color ="#99CC66";
	}
	// W3C - Explorer 5+ and Netscape 6+
	else if(ie5 || ns6){
		document.getElementById(id).style.color ="#99CC66";
	}
}


/* ====================================================== */
/* COUNTER ROLLOVER (hide or show) */
function showStats(state)
{
	if (ie5) {
		document.all.stats.style.visibility = state;
	}
}

/* ====================================================== */

function openWindow(strURL)
{
   if (strURL)
   {
      window.open(strURL, "productPopup","status=0,toolbar=0,directories=0,location=0,menubar=0,scrollbars=1,resizable=1,width=500,height=540,top=20,left=20");
	  //productPopup.focus();
     //location.reload(true);
   }
}

