function popup(name,url,w,h) { remote = window.open(url, name, 'width=' + w + ',height=' + h +',resizable=yes,scrollbars=yes'); if (remote != null) { if (remote.opener == null) remote.opener = self; window.name = 'movieWindow'; remote.location.href = url; } }

       var insideLogin = false;
       var insidentroProc = false;
         
       function showlogin() {
       if(document.getElementById) {
               this.obj = document.getElementById("loginBox");
       } else if(document.all) {               
	this.obj = document.all["loginBox"];       
	}             
	this.obj.style.display = '';             
//	this.obj.forms["login"].elements["username"].focus();
 //            document.getElementById("loginBox").style.display = '';^M
 //            document.getElementById("loginBox").login.username.focus();^M
         }

       function showNtro() {
       if(document.getElementById) {
               this.obj = document.getElementById("ntroProc");
       } else if(document.all) {               
	this.obj = document.all["ntroProc"];       
	}             
	this.obj.style.display = '';             
         }

       function hidelogin() {
                 if ( !insideLogin ) {
                       if(document.getElementById) {
                               this.obj = document.getElementById("loginBox");
                       } else if(document.all) {
                               this.obj = document.all["loginBox"];
                       }
               this.obj.style.display = 'none';
 
 //                    if(document.getElementById) {  
//                           document.getElementById("loginBox").style.display = 'none';
 //                    }
                 }         
		}         
       function hideNtro() {
                 if ( !insidentroProc ) {
                       if(document.getElementById) {
                               this.obj = document.getElementById("ntroProc");
                       } else if(document.all) {
                               this.obj = document.all["ntroProc"];
                       }
               this.obj.style.display = 'none';
                 }         
		}        
