<!--//

 

var agent = navigator.userAgent;         
var over3 = 0;         
var busy = 0;         
         
if (agent.indexOf("a/3",6) != -1 || agent.indexOf("a/4",6) != -1)         
{         
        over3 = 1;         
}         
         
if (over3 == 1)         
{         
        icon1_on = new Image();         
        icon1_off = new Image();         
         
        icon2_on = new Image();         
        icon2_off = new Image();         
         
        icon3_on = new Image();         
        icon3_off = new Image();         
         
        icon4_on = new Image();         
        icon4_off = new Image(); 

        icon5_on = new Image();         
        icon5_off = new Image();

        icon6_on = new Image();         
        icon6_off = new Image();   

        icon7_on = new Image();         
        icon7_off = new Image();                      
   
   
        icon1_on.src = "/images/nav1o.gif";         
        icon1_off.src = "/images/nav1.gif";       
         
        icon2_on.src = "/images/nav2o.gif";         
        icon2_off.src = "/images/nav2.gif";                      
         
        icon3_on.src = "/images/nav3o.gif";         
        icon3_off.src = "/images/nav3.gif";       
                   
        icon4_on.src = "/images/nav4o.gif";         
        icon4_off.src = "/images/nav4.gif";
   
        icon5_on.src = "/images/nav5o.gif";         
        icon5_off.src = "/images/nav5.gif";    

        icon6_on.src = "/images/nav6o.gif";         
        icon6_off.src = "/images/nav6.gif";    
         
        icon7_on.src = "/images/nav7o.gif";         
        icon7_off.src = "/images/nav7.gif";    
         
         
         
}         
         
        
        
        
function mouseOnIcon(n)         
{         
if (over3 == 1 && busy == 0)         
{         
        busy = 1;         
        if ( n == 1 )         
        {         
                document.images[ "icon1" ].src = icon1_on.src;         
        } else if ( n == 2 )         
        {         
                document.images[ "icon2" ].src = icon2_on.src;         
        } else if ( n == 3 )         
        {         
                document.images[ "icon3" ].src = icon3_on.src;         
        } else if ( n == 4 )         
        {         
                document.images[ "icon4" ].src = icon4_on.src;         
        }  else if ( n == 5 )         
        {         
                document.images[ "icon5" ].src = icon5_on.src;         
        }  else if ( n == 6 )         
        {         
                document.images[ "icon6" ].src = icon6_on.src;         
        }  else if ( n == 7 )         
        {         
                document.images[ "icon7" ].src = icon7_on.src;         
        } 
}         
busy = 0;         
}         
        
function mouseOutIcon(n)         
{         
if (over3 == 1 && busy == 0)         
{         
        busy=1;         
        if ( n == 1 )         
        {         
                document.images[ "icon1" ].src = icon1_off.src;         
        } else if ( n == 2 )         
        {         
                document.images[ "icon2" ].src = icon2_off.src;         
        } else if ( n == 3 )         
        {         
                document.images[ "icon3" ].src = icon3_off.src;         
        } else if ( n == 4 )         
        {         
                document.images[ "icon4" ].src = icon4_off.src;         
        } else if ( n == 5 )         
        {         
                document.images[ "icon5" ].src = icon5_off.src;         
        } else if ( n == 6 )         
        {         
                document.images[ "icon6" ].src = icon6_off.src;         
        } else if ( n == 7 )         
        {         
                document.images[ "icon7" ].src = icon7_off.src;         
        }       
}         
busy=0;         
}         

function NewWin(url, width, height) {                                                                                                                                                                                                                                                                                                                                             
var Win_Str = 'width=' + width + ',height=' + height + ', top=300,left=300,toolbar=0,scrollbars=0,resizable=no' 
    farwindow = window.open('','Sky',Win_Str);                                                                                                                                                                                                                                                                                                                                             
	if (farwindow != null) {                                                                                                                                                                                                                                                                                                                                             
		if (farwindow.opener == null) {                                                                                                                                                                                                                                                                                                                                             
			farwindow.opener = self;                                                                                                                                                                                                                                                                                                                                             
		}                                                                                                                                                                                                                                                                                                                                             
		farwindow.location.href = url;                                                                                                                                                                                                                                                                                                                                             
	}                                                                                                                                                                                                                                                                                                                                             
}                                                                                                                                                                                                                                                                                                                                                    

function NewWinChat(url, width, height) {                                                                                                                                                                                                                                                                                                                                             
var Win_Str = 'width=' + width + ',height=' + height + ', top=300,left=300,toolbar=0,scrollbars=0,resizable=no' 
    farwindow = window.open('','SkyChat',Win_Str);                                                                                                                                                                                                                                                                                                                                             
	if (farwindow != null) {                                                                                                                                                                                                                                                                                                                                             
		if (farwindow.opener == null) {                                                                                                                                                                                                                                                                                                                                             
			farwindow.opener = self;                                                                                                                                                                                                                                                                                                                                             
		}                                                                                                                                                                                                                                                                                                                                             
		farwindow.location.href = url;                                                                                                                                                                                                                                                                                                                                             
	}                                                                                                                                                                                                                                                                                                                                             
}                                                                                                                                                                                                                                                                                                                                                    

//-->
