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


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

function chgNavBar(id){

/* BROWSER CHECK */
var browserOK = document.getElementById;

	// Change menu anchor attribute
	if(browserOK){
		document.getElementById(id).style.color ="#B89832";
		document.getElementById(id).style.textDecoration ="none";
	}
}

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

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);
   }
}

