// JavaScript Document

// Browser version detection
browser = navigator.appName;
		
ver = parseInt(navigator.appVersion);  
		      
active = ((browser == "Netscape") && (ver >= 3)) || ((browser == "Microsoft Internet Explorer") && (ver >= 4));        

	if (active) {

// Add or change mouseover buttons here:
// Main Nav
          
          button01on = new Image;
          button01on.src = "/images/btn_home_on.gif";
          button01off = new Image;
          button01off.src = "/images/btn_home_off.gif";
          
          button02on = new Image;
          button02on.src = "/images/btn_about_on.gif";
          button02off = new Image;
          button02off.src = "/images/btn_about_off.gif";
          
          button03on = new Image;
          button03on.src = "/images/btn_store_on.gif";
          button03off = new Image;
          button03off.src = "/images/btn_store_off.gif";
          
          button04on = new Image;
          button04on.src = "/images/btn_events_on.gif";
          button04off = new Image;
          button04off.src = "/images/btn_events_off.gif";

// Don't edit below here
        
        }
        
        function img_on(imgName) {
          if (active) {
            imgOn = eval(imgName + "on.src");
            document[imgName].src = imgOn;
          }
        }
        
        function img_off(imgName) {
          if (active) {
            imgOff = eval(imgName + "off.src");
            document[imgName].src = imgOff;
          }
        }
		
//Open Window
function OpenWin()
	{
	var option = "toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,width=248,height=120";

	var new_win = window.open("/swf/gpradio.html", "NewWindow", option );

	}

