 $(document).ready(function() {
	
   //	
   // Replace the 'login' with this users actual login information.
   //
   // FWIW:  /export/dvf/DVf/Web/clip.pm
   //
//   alert("POSTING");
    $('#OFlogin').html("");
   $.post("/action",
       	{screen:'ajax_get_login_snippit'},



        function (data) {
          //   alert("DONEPOSTING");
          if ( data.indexOf('GOODLOGINSNIPPIT') != -1 ) {
   	     $('#OFlogin').html(data);
	  }

       },
        "html"
      );


   });

