        
<!--
 function changePage(pageLocation,frameLocation)
 {
        
        
        var placetoGo = null;
        if(pageLocation.charAt(pageLocation.length-1) != 'E')
        {
                window.open(pageLocation,frameLocation)
        }
        else
        {
                var placetoGo = pageLocation.substring(0,(pageLocation.length-1))
                parent.location = placetoGo;
        }
 }

if(document.images)
	{	
	 
	retail_off = new Image();retail_off.src='images/retail_off.jpg';
	retail_on = new Image();retail_on.src='images/retail_on.jpg';

	team_off = new Image();team_off.src='images/team_off.jpg';
	team_on = new Image();team_on.src='images/team_on.jpg';

	satellite_off = new Image();satellite_off.src='images/satellite_off.jpg';
	satellite_on = new Image();satellite_on.src='images/satellite_on.jpg';
}	       

function imgOn(name) { 
	if (document.images) {
	document.images[name].src = eval(name+"_on.src");
}}

function imgOff(name) { 
	if (document.images) {
	document.images[name].src = eval(name+"_off.src");
}}

//-->


