function validate(uname1,pass1){
         var list=new Array();
         //List of Username
         list[0]=new Array('GSA','immigration');
         list[1]=new Array('gcimedia1','gcimedia1');
         //
         var found=false;
         for(i=0 ; i!=list.length ; i++){
                 if(list[i][0].toUpperCase()==uname1.toUpperCase() &&
                         list[i][1].toUpperCase()==pass1.toUpperCase()){
                         found=true;
                 }
         }
         if(found==true){
                var w = window.open('http://www.mbsfcorp.com/galleries/GSA.htm','members','toolbar=0,resizable=0,menubar=0,location=0,status=0,scrollbars=0,width=591,height=425,screenX=30,screenY=25,left=30,top=25') ;
                return 1;
         
         }else{
                alert('Invalid Username and/or Password. Please enter it again');
         }
}
