<!--
function newWindow(url){
   glossWin = window.open(url,'glosspop','status=yes,scrollbars=yes,width=517,height=40');
   setTimeout("glossWin.focus()",50);
}
 
function glossWindow(url){
   mainWin = window.open(url,'glossmain','status=yes,scrollbars=yes,width=517,height=400');
   setTimeout("mainWin.focus()",50);
}
 
function redirectWin(urln, urlr){
   if (document.all) {
	   window.location=urln;
       if ((navigator.appVersion.indexOf("Mac") != -1)) {
           window.location=urlr;
       }
   }else if (document.layers) {
	  	   window.location=urln;
   }else if (document.getElementById) {
     window.location=urlr;
   }
}
 // -->