conBrowser=1;
  switch1on  = new Image();  switch1on.src  = '../images/nav_home2.gif';
  switch1off = new Image();  switch1off.src = '../images/nav_home.gif';
  switch2on  = new Image();  switch2on.src  = '../images/nav_photo2.gif';
  switch2off = new Image();  switch2off.src = '../images/nav_photo.gif';
  switch3on  = new Image();  switch3on.src  = '../images/nav_articles2.gif';
  switch3off = new Image();  switch3off.src = '../images/nav_articles.gif';
  switch4on  = new Image();  switch4on.src  = '../images/nav_buynow2.gif';
  switch4off = new Image();  switch4off.src = '../images/nav_buynow.gif';
  switch5on  = new Image();  switch5on.src  = '../images/subnav_on_01.gif';
  switch5off = new Image();  switch5off.src = '../images/subnav_off_01.gif';
  switch6on  = new Image();  switch6on.src  = '../images/subnav_on_02.gif';
  switch6off = new Image();  switch6off.src = '../images/subnav_off_02.gif';
  switch7on  = new Image();  switch7on.src  = '../images/nav_faq2.gif';
  switch7off = new Image();  switch7off.src = '../images/nav_faq.gif';
  switch8on  = new Image();  switch8on.src  = '../images/subnav_on_03.gif';
  switch8off = new Image();  switch8off.src = '../images/subnav_off_03.gif';
  switch9on  = new Image();  switch9on.src  = '../images/subnav_on_04.gif';
  switch9off = new Image();  switch9off.src = '../images/subnav_off_04.gif';
  switch10on  = new Image();  switch10on.src  = '../images/subnav_on_05.gif';
  switch10off = new Image();  switch10off.src = '../images/subnav_off_05.gif';


function HighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "on");
      		document [musswitch].src = switchnavn.src;
    		}
  	}

function UndoHighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "off");
		document [musswitch].src = switchnavn.src;
		}
	}
function openScript(url, width, height) {
	        var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=no,status=no' );
		}