maj.world

maj.world

Git

This commit has been accessed 589 times via Git panel.

commit 4859f82c1cd35f3ffd3de9ef1987c8a1701108c4
tree 9c78d40825acbc6bb66e639906f5f29eac404b23
parent 20977e89ae3eed60458ac81f0cadff5f98afc0d6
author Engels Antonio <engels@majcms.org> 1312118019 +0800
committer Engels Antonio <engels@majcms.org> 1312118019 +0800

    Add admin user privilege

diff --git a/album.php b/album.php
index 16d627d..e32729d 100644
--- a/album.php
+++ b/album.php
@@ -221,7 +221,7 @@ if (file_exists("images/$maj_req_entry/album/$maj_req_show")) {
                echo "<input type=hidden name=show value=$maj_req_show>";
                echo "<input type=hidden name=edit value=caption>";
                echo "<tr bgcolor=#ffffff><td colspan=\"$album_image_colspan\">";
-               echo "<textarea class=input name=caption rows=3 autofocus required>";
+               echo "<textarea class=input name=caption rows=3 required>";
                if (file_exists("data/items/$maj_req_entry/album/captions/{$maj_req_show}.txt")) {
                        $caption_get = file_get_contents("data/items/$maj_req_entry/album/captions/{$maj_req_show}.txt");
                        $caption_get = str_replace('<br />', "\n", $caption_get);
diff --git a/edit.php b/edit.php
index 98d5d8f..01e3a69 100644
--- a/edit.php
+++ b/edit.php
@@ -417,6 +417,9 @@
 
   <?php
       }
+  }
+  
+  if (($maj_logged_in_username == $maj_admin_username) or file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-adm.txt")) {
 ?>
 
   <tr><td><input type="checkbox" name="xtitle" <?php
@@ -426,10 +429,6 @@
       }
 ?>>Do not display the entry title.</td></tr>
 
-<?php
-  }
-?>
-
   <tr><td><input type="checkbox" name="xdate" <?php
       $lastmod_sem = "$maj_data_directory/items/$maj_req_entry/xdate.txt";
       if (file_exists($lastmod_sem)) {
@@ -517,6 +516,8 @@ if (file_exists("images/$maj_req_entry/album")) {
        }
 }
 
+}
+
 ?>
 
 </table></p>
@@ -597,6 +598,10 @@ if (file_exists("images/$maj_req_entry/album")) {
                       continue;
                   }
                   
+                  if (($maj_admin_username != $maj_logged_in_username) and !file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-adm.txt")) {
+                       continue;
+                  }
+                  
                   if (file_exists("$maj_data_directory/items/$maj_req_entry/categories/$entry_cat")) {
                       $filed_cat[] = $entry_cat;
                   }
@@ -663,7 +668,7 @@ if (file_exists("images/$maj_req_entry/album")) {
   
   // add member authorization (20100221) - start
   
-  if (file_exists("$maj_data_directory/members/active")) {
+  if (file_exists("$maj_data_directory/members/active") and (($maj_admin_username == $maj_logged_in_username) or (($maj_admin_username != $maj_logged_in_username) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-adm.txt")))) {
       echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"2\"><tr><td valign=\"top\" width=\"150\">";
       
       if ($dh_ack_members = opendir("$maj_data_directory/items/$maj_req_entry/members")) {
@@ -1084,7 +1089,52 @@ if (file_exists("images/$maj_req_entry/album")) {
               unlink("$maj_data_directory/items/$maj_req_entry/lock.txt");
           }
       }
+
+      $xauthor_sem = "$maj_data_directory/items/$maj_req_entry/xauthor.txt";
+      
+      if (isset($_POST['xauthor']) and !empty($_POST['xauthor']) and ($_POST['xauthor'] == "on")) {
+          if (!file_exists($xauthor_sem)) {
+              touch($xauthor_sem);
+          }
+      }
+      
+      if (!isset($_POST['xauthor']) or empty($_POST['xauthor'])) {
+          if (file_exists($xauthor_sem)) {
+              unlink($xauthor_sem);
+          }
+      }
       
+      $passwd_file = "$maj_data_directory/items/$maj_req_entry/passwd.txt";
+      
+      if (isset($_POST['passwd']) and !empty($_POST['passwd'])) {
+          $fp_passwd_txt = fopen("$passwd_file", "w");
+          $passwd_crypt = sha1($_POST['passwd']);
+          $passwd_crypt = md5($passwd_crypt);
+          $passwd_crypt = crypt($passwd_crypt, $passwd_crypt);
+          fwrite($fp_passwd_txt, $passwd_crypt);
+          fclose($fp_passwd_txt);
+      }
+      
+      if (!isset($_POST['passwd']) or empty($_POST['passwd'])) {
+          if (file_exists($passwd_file)) {
+              unlink($passwd_file);
+          }
+      }
+      
+      if (isset($_POST['maxlines']) and !empty($_POST['maxlines']) and is_numeric($_POST['maxlines'])) {
+          $fp_maxlines_txt = fopen("$maj_data_directory/items/$maj_req_entry/maxlines.txt", "w");
+          fwrite($fp_maxlines_txt, $_POST['maxlines']);
+          fclose($fp_maxlines_txt);
+      }
+      
+      if (!isset($_POST['maxlines']) or empty($_POST['maxlines'])) {
+          if (file_exists("$maj_data_directory/items/$maj_req_entry/maxlines.txt")) {
+              unlink("$maj_data_directory/items/$maj_req_entry/maxlines.txt");
+          }
+      }
+  }
+  
+  if (($maj_logged_in_username == $maj_admin_username) or file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-adm.txt")) {
       $xtitle_sem = "$maj_data_directory/items/$maj_req_entry/xtitle.txt";
       
       if (isset($_POST['xtitle']) and !empty($_POST['xtitle']) and ($_POST['xtitle'] == "on")) {
@@ -1113,19 +1163,6 @@ if (file_exists("images/$maj_req_entry/album")) {
           }
       }
 
-      $xauthor_sem = "$maj_data_directory/items/$maj_req_entry/xauthor.txt";
-      
-      if (isset($_POST['xauthor']) and !empty($_POST['xauthor']) and ($_POST['xauthor'] == "on")) {
-          if (!file_exists($xauthor_sem)) {
-              touch($xauthor_sem);
-          }
-      }
-      
-      if (!isset($_POST['xauthor']) or empty($_POST['xauthor'])) {
-          if (file_exists($xauthor_sem)) {
-              unlink($xauthor_sem);
-          }
-      }
 
       $xavatar_sem = "$maj_data_directory/items/$maj_req_entry/xavatar.txt";
       
@@ -1140,6 +1177,21 @@ if (file_exists("images/$maj_req_entry/album")) {
               unlink($xavatar_sem);
           }
       }
+      
+      $lastmod_sem = "$maj_data_directory/items/$maj_req_entry/lastmod.txt";
+      
+      if (isset($_POST['lastmod']) and !empty($_POST['lastmod']) and ($_POST['lastmod'] == "on")) {
+          if (!file_exists($lastmod_sem)) {
+              touch($lastmod_sem);
+          }
+      }
+      
+      if (!isset($_POST['lastmod']) or empty($_POST['lastmod'])) {
+          if (file_exists($lastmod_sem)) {
+              unlink($lastmod_sem);
+          }
+      }
+
 
       $gl_sem = "$maj_data_directory/items/$maj_req_entry/gl.txt";
       
@@ -1168,20 +1220,6 @@ if (file_exists("images/$maj_req_entry/album")) {
               unlink($fb_sem);
           }
       }
-    
-      $lastmod_sem = "$maj_data_directory/items/$maj_req_entry/lastmod.txt";
-      
-      if (isset($_POST['lastmod']) and !empty($_POST['lastmod']) and ($_POST['lastmod'] == "on")) {
-          if (!file_exists($lastmod_sem)) {
-              touch($lastmod_sem);
-          }
-      }
-      
-      if (!isset($_POST['lastmod']) or empty($_POST['lastmod'])) {
-          if (file_exists($lastmod_sem)) {
-              unlink($lastmod_sem);
-          }
-      }
 
        if (isset($_POST['auto_album']) and !empty($_POST['auto_album']) and ($_POST['auto_album'] == "on")) {
       
@@ -1196,36 +1234,7 @@ if (file_exists("images/$maj_req_entry/album")) {
                        unlink("$maj_data_directory/items/$maj_req_entry/auto-album.txt");
                }
        }
-      
-      $passwd_file = "$maj_data_directory/items/$maj_req_entry/passwd.txt";
-      
-      if (isset($_POST['passwd']) and !empty($_POST['passwd'])) {
-          $fp_passwd_txt = fopen("$passwd_file", "w");
-          $passwd_crypt = sha1($_POST['passwd']);
-          $passwd_crypt = md5($passwd_crypt);
-          $passwd_crypt = crypt($passwd_crypt, $passwd_crypt);
-          fwrite($fp_passwd_txt, $passwd_crypt);
-          fclose($fp_passwd_txt);
-      }
-      
-      if (!isset($_POST['passwd']) or empty($_POST['passwd'])) {
-          if (file_exists($passwd_file)) {
-              unlink($passwd_file);
-          }
-      }
-      
-      if (isset($_POST['maxlines']) and !empty($_POST['maxlines']) and is_numeric($_POST['maxlines'])) {
-          $fp_maxlines_txt = fopen("$maj_data_directory/items/$maj_req_entry/maxlines.txt", "w");
-          fwrite($fp_maxlines_txt, $_POST['maxlines']);
-          fclose($fp_maxlines_txt);
-      }
-      
-      if (!isset($_POST['maxlines']) or empty($_POST['maxlines'])) {
-          if (file_exists("$maj_data_directory/items/$maj_req_entry/maxlines.txt")) {
-              unlink("$maj_data_directory/items/$maj_req_entry/maxlines.txt");
-          }
-      }
-  }
+  }  
   
   if (file_exists("$maj_data_directory/items/$maj_req_entry/title.old")) {
       unlink("$maj_data_directory/items/$maj_req_entry/title.old");
diff --git a/index.php b/index.php
index 8c508c6..b68fc52 100644
--- a/index.php
+++ b/index.php
@@ -3229,7 +3229,7 @@ foreach ($maj_disp as $maj_d) {
                                }
                                else {
                                        ?>
-                                       <td width=75><nobr>First Name*</nobr></td><td width=300><input required autofocus class=input type=text autocomplete=off name=firstname maxlength=30></td>
+                                       <td width=75><nobr>First Name*</nobr></td><td width=300><input required class=input type=text autocomplete=off name=firstname maxlength=30></td>
                                        <?php
                                }
                                ?>
diff --git a/member.php b/member.php
index d71e925..0c7aaf2 100644
--- a/member.php
+++ b/member.php
@@ -182,7 +182,15 @@ if ($id == "all") {
                if ((!isset($_POST['ul']) or empty($_POST['ul'])) and file_exists("data/members/active/{$_POST['username']}/bb-ul.txt")) {
                        unlink("data/members/active/{$_POST['username']}/bb-ul.txt");
                }
+
+               if (isset($_POST['adm']) and !empty($_POST['adm']) and ($_POST['adm'] == "on") and !file_exists("data/members/active/{$_POST['username']}/bb-adm.txt")) {
+                       touch("data/members/active/{$_POST['username']}/bb-adm.txt");
+               }
       
+               if ((!isset($_POST['adm']) or empty($_POST['adm'])) and file_exists("data/members/active/{$_POST['username']}/bb-adm.txt")) {
+                       unlink("data/members/active/{$_POST['username']}/bb-adm.txt");
+               }
+                      
                if (isset($_POST['noml']) and !empty($_POST['noml']) and ($_POST['noml'] == "on") and !file_exists("data/members/active/{$_POST['username']}/bb-noml.txt")) {
                        touch("data/members/active/{$_POST['username']}/bb-noml.txt");
                }
@@ -244,12 +252,16 @@ if ($id == "all") {
                if (file_exists("data/members/active/{$_POST['username']}/bb-ul.txt") and !file_exists("data/members/active/{$_POST['username']}/bb-rw.txt") and !file_exists("data/members/active/{$_POST['username']}/category.txt")) {
                        unlink("data/members/active/{$_POST['username']}/bb-ul.txt");
                }
-      
+
+               if (file_exists("data/members/active/{$_POST['username']}/bb-adm.txt") and !file_exists("data/members/active/{$_POST['username']}/bb-rw.txt") and !file_exists("data/members/active/{$_POST['username']}/category.txt")) {
+                       unlink("data/members/active/{$_POST['username']}/bb-adm.txt");
+               }
+                      
                if (isset($_POST['del']) and !empty($_POST['del']) and ($_POST['del'] == "on")) {
               
                        rmdirr("data/members/active/{$_POST['username']}");
+               }
        }
-}
 
 ?>
 
@@ -257,7 +269,7 @@ if ($id == "all") {
 <tr><td bgcolor="#eeeeee" align="center">status</td><td bgcolor="#eeeeee" align="center">username</td><?php if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) { echo "<td bgcolor=\"#eeeeee\" align=\"center\">real name</td>"; } ?><td bgcolor="#eeeeee" align="center">member since</td><td bgcolor="#eeeeee" align="center">logins</td><td bgcolor="#eeeeee" align="center">posts</td><?php
 
 if (isset($maj_logged_in_username) and !empty($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
-       echo '<td bgcolor="#eeeeee" align="center">rw</td><td bgcolor="#eeeeee" align="center">ul</td><td bgcolor="#eeeeee" align="center">noml</td><td bgcolor="#eeeeee" align="center">lock</td><td bgcolor="#eeeeee" align="center">del</td><td bgcolor="#eeeeee" align="center">rank</td><td bgcolor="#eeeeee" align="center">category</td><td bgcolor="#eeeeee" align="center">action</td>';
+       echo '<td bgcolor="#eeeeee" align="center">rw</td><td bgcolor="#eeeeee" align="center">ul</td><td bgcolor="#eeeeee" align="center">adm</td><td bgcolor="#eeeeee" align="center">noml</td><td bgcolor="#eeeeee" align="center">lock</td><td bgcolor="#eeeeee" align="center">del</td><td bgcolor="#eeeeee" align="center">rank</td><td bgcolor="#eeeeee" align="center">category</td><td bgcolor="#eeeeee" align="center">action</td>';
 }
 
 ?></tr>
@@ -468,6 +480,12 @@ if (file_exists("data/members/active")) {
                                                echo " checked";
                                        }
 
+                                       echo "></td><td bgcolor=#ffffff align=center><input type=checkbox name=adm";
+
+                                       if (file_exists("data/members/active/$member_list_entry/bb-adm.txt")) {
+                                               echo " checked";
+                                       }
+
                                        echo "></td><td bgcolor=#ffffff align=center><input type=checkbox name=noml";
 
                                        if (file_exists("data/members/active/$member_list_entry/bb-noml.txt")) {
@@ -531,7 +549,7 @@ if (file_exists("data/members/active")) {
                                }
 
                                if ($member_list_entry == $maj_admin_username) {
-                                       echo "<td colspan=8 bgcolor=#ffffff align=center><a href=settings.php>administrator settings</a></td>";
+                                       echo "<td colspan=9 bgcolor=#ffffff align=center><a href=settings.php>administrator settings</a></td>";
                                }
                        }
                }
diff --git a/options.php b/options.php
index 35b66c9..59cfcab 100644
--- a/options.php
+++ b/options.php
@@ -4,23 +4,23 @@ require("core.php");
 
 session_regenerate_id(TRUE);
 
-if (file_exists("data/lite.txt")) {
+if (file_exists("$maj_data_directory/lite.txt")) {
        exit();
 }
 
-if (!file_exists("data/bb.txt")) {
+if (!file_exists("$maj_data_directory/bb.txt")) {
        exit();
 }
 
-if (file_exists("data/bb-min-age.txt")) {
-       $minage = file_get_contents("data/bb-min-age.txt");
+if (file_exists("$maj_data_directory/bb-min-age.txt")) {
+       $minage = file_get_contents("$maj_data_directory/bb-min-age.txt");
 }
 else {
        $minage = 5;
 }
 
-if (file_exists("data/bb-max-age.txt")) {
-       $maxage = file_get_contents("data/bb-max-age.txt");
+if (file_exists("$maj_data_directory/bb-max-age.txt")) {
+       $maxage = file_get_contents("$maj_data_directory/bb-max-age.txt");
 }
 else {
        $maxage = 125;
@@ -36,11 +36,11 @@ if (isset($_REQUEST['username']) and !empty($_REQUEST['username']) and isset($_R
 
        $username = $_REQUEST['username'];
 
-       if (file_exists("data/members/active/$username") and ($_REQUEST['key'] == file_get_contents("data/members/active/$username/key.txt"))) {
-               unlink("data/members/active/$username/key.txt");
-               unlink("data/members/active/$username/bb-vacation.txt");
-               unlink("data/members/active/$username/email.txt");
-               rename("data/members/active/$username/new-email.txt","data/members/active/$username/email.txt");
+       if (file_exists("$maj_data_directory/members/active/$username") and ($_REQUEST['key'] == file_get_contents("$maj_data_directory/members/active/$username/key.txt"))) {
+               unlink("$maj_data_directory/members/active/$username/key.txt");
+               unlink("$maj_data_directory/members/active/$username/bb-vacation.txt");
+               unlink("$maj_data_directory/members/active/$username/email.txt");
+               rename("$maj_data_directory/members/active/$username/new-email.txt","$maj_data_directory/members/active/$username/email.txt");
                echo "<p><font style=\"font-size: 12px;\"><b>Thanks!</b></font></p><p>You have successfully verified your new e-mail address.<br>Click <a href=index.php>here</a> to go to the index page.</p>";
        }
        exit();
@@ -54,31 +54,31 @@ if ($maj_logged_in_username == $maj_admin_username) {
        exit();
 }
 
-if (!file_exists("data/members/active/$maj_logged_in_username")) {
+if (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username")) {
        exit();
 }
 
-if (isset($_POST['email']) and !empty($_POST['email']) and (file_get_contents("data/members/active/$maj_logged_in_username/email.txt") != $_POST['email']) and (mb_ereg("@", $_POST['email'])) and (mb_ereg("\.", $_POST['email']))) {
+if (isset($_POST['email']) and !empty($_POST['email']) and (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/email.txt") != $_POST['email']) and (mb_ereg("@", $_POST['email'])) and (mb_ereg("\.", $_POST['email']))) {
 
        $email_write_content = mb_strtolower($_POST['email']);
        $email_write_content = trim($email_write_content);
        $email_write_content = str_replace(" ","",$email_write_content);
        $email_write_content = htmlentities($email_write_content, ENT_QUOTES, 'UTF-8');
 
-       $fp_email_txt = fopen("data/members/active/$maj_logged_in_username/new-email.txt","w");
+       $fp_email_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/new-email.txt","w");
        fwrite($fp_email_txt,$email_write_content);
        fclose($fp_email_txt);
 
        $key_email = str_rand(40);
 
-       $fp_key_txt = fopen("data/members/active/$maj_logged_in_username/key.txt","w");
+       $fp_key_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/key.txt","w");
        fwrite($fp_key_txt,$key_email);
        fclose($fp_key_txt);
 
-       $firstname = file_get_contents("data/members/active/$maj_logged_in_username/firstname.txt");
-       $lastname = file_get_contents("data/members/active/$maj_logged_in_username/lastname.txt");
+       $firstname = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/firstname.txt");
+       $lastname = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/lastname.txt");
 
-       $old_email = file_get_contents("data/members/active/$maj_logged_in_username/email.txt");
+       $old_email = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/email.txt");
 
        $mailer = 'MAJ/2.0 (PHP/' . phpversion() . ')';
 
@@ -86,8 +86,8 @@ if (isset($_POST['email']) and !empty($_POST['email']) and (file_get_contents("d
        $sig_url = str_replace('//', '/', $sig_url);
        $sig_url = "http://" . $sig_url;
 
-       $sig_author = file_get_contents("data/author.txt");
-       $from_email = file_get_contents("data/email.txt");
+       $sig_author = file_get_contents("$maj_data_directory/author.txt");
+       $from_email = file_get_contents("$maj_data_directory/email.txt");
 
        $confirm_change = "Hi $firstname,\n\nWe have received an e-mail address modification request ($old_email to $email_write_content) at $sig_url. To confirm this, simply visit this link:\n\n{$sig_url}options.php?username={$maj_logged_in_username}&key=$key_email\n\nIf you have any questions, send them to $from_email.\n\nThanks!\n\n--\n$sig_author\n$sig_url\n";
        //$confirm_change = wordwrap($confirm_change);
@@ -104,7 +104,7 @@ if (isset($_POST['email']) and !empty($_POST['email']) and (file_get_contents("d
 }
 
 if ((!isset($_POST['url']) or empty($_POST['url'])) and isset($_POST['edit']) and ($_POST['edit'] == "on")) {
-       unlink("data/members/active/$maj_logged_in_username/url.txt");
+       unlink("$maj_data_directory/members/active/$maj_logged_in_username/url.txt");
 }
 
 if (isset($_POST['url']) and !empty($_POST['url']) and (mb_ereg("\.", $_POST['url']))) {
@@ -117,7 +117,7 @@ if (isset($_POST['url']) and !empty($_POST['url']) and (mb_ereg("\.", $_POST['ur
        $url = str_replace(" ","",$url);
        $url = htmlentities($url, ENT_QUOTES, 'UTF-8');
 
-       $fp_url_txt = fopen("data/members/active/$maj_logged_in_username/url.txt","w");
+       $fp_url_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/url.txt","w");
        fwrite($fp_url_txt,$url);
        fclose($fp_url_txt);
 }
@@ -129,7 +129,7 @@ if (isset($_POST['country']) and !empty($_POST['country'])) {
        $country = mb_strtoupper($country);
        $country = htmlentities($country, ENT_QUOTES, 'UTF-8');
 
-       $fp_country_txt = fopen("data/members/active/$maj_logged_in_username/country.txt","w");
+       $fp_country_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/country.txt","w");
        fwrite($fp_country_txt,$country);
        fclose($fp_country_txt);
 }
@@ -141,13 +141,13 @@ if (isset($_POST['city']) and !empty($_POST['city'])) {
        $city = ucwords($city);
        $city = htmlentities($city, ENT_QUOTES, 'UTF-8');
 
-       $fp_city_txt = fopen("data/members/active/$maj_logged_in_username/city.txt","w");
+       $fp_city_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/city.txt","w");
        fwrite($fp_city_txt,$city);
        fclose($fp_city_txt);
 }
 
 if ((!isset($_POST['sig']) or empty($_POST['sig'])) and isset($_POST['edit']) and ($_POST['edit'] == "on")) {
-       unlink("data/members/active/$maj_logged_in_username/sig.txt");
+       unlink("$maj_data_directory/members/active/$maj_logged_in_username/sig.txt");
 }
 
 if (isset($_POST['sig']) and !empty($_POST['sig'])) {
@@ -169,22 +169,22 @@ if (isset($_POST['sig']) and !empty($_POST['sig'])) {
        $sig = ucfirst($sig);
        $sig = trim($sig);
 
-       $fp_sig_txt = fopen("data/members/active/$maj_logged_in_username/sig.txt","w");
+       $fp_sig_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/sig.txt","w");
        fwrite($fp_sig_txt,$sig);
        fclose($fp_sig_txt);
 }
 
 if (isset($_POST['del_avatar']) and !empty($_POST['del_avatar']) and ($_POST['del_avatar'] == "on")) {
-       if (file_exists("images/members/$maj_logged_in_username/avatar.gif")) {
-               unlink("images/members/$maj_logged_in_username/avatar.gif");
+       if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.gif")) {
+               unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.gif");
        }
 
-       if (file_exists("images/members/$maj_logged_in_username/avatar.jpg")) {
-               unlink("images/members/$maj_logged_in_username/avatar.jpg");
+       if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg")) {
+               unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg");
        }
 
-       if (file_exists("images/members/$maj_logged_in_username/avatar.png")) {
-               unlink("images/members/$maj_logged_in_username/avatar.png");
+       if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.png")) {
+               unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.png");
        }
 }
 
@@ -196,38 +196,38 @@ if (isset($_FILES['avatar']) and !empty($_FILES['avatar'])) {
 
                        if (($_FILES['avatar']['type']=="image/gif") || ($_FILES['avatar']['type']=="image/pjpeg") || ($_FILES['avatar']['type']=="image/jpeg") || ($_FILES['avatar']['type']=="image/png")) {
 
-                               if (!file_exists("images/members")) {
-                                       mkdir("images/members");
+                               if (!file_exists("$maj_image_directory/members")) {
+                                       mkdir("$maj_image_directory/members");
                                }
 
-                               if (!file_exists("images/members/$maj_logged_in_username")) {
-                                       mkdir("images/members/$maj_logged_in_username");
+                               if (!file_exists("$maj_image_directory/members/$maj_logged_in_username")) {
+                                       mkdir("$maj_image_directory/members/$maj_logged_in_username");
                                }
 
-                               if (file_exists("images/members/$maj_logged_in_username/avatar.gif")) {
-                                       unlink("images/members/$maj_logged_in_username/avatar.gif");
+                               if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.gif")) {
+                                       unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.gif");
                                }
 
-                               if (file_exists("images/members/$maj_logged_in_username/avatar.jpg")) {
-                                       unlink("images/members/$maj_logged_in_username/avatar.jpg");
+                               if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg")) {
+                                       unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg");
                                }
 
-                               if (file_exists("images/members/$maj_logged_in_username/avatar.png")) {
-                                       unlink("images/members/$maj_logged_in_username/avatar.png");
+                               if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.png")) {
+                                       unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.png");
                                }
 
                                if ($_FILES['avatar']['type']=="image/gif") {
-                                       $res = copy($_FILES['avatar']['tmp_name'], "images/members/$maj_logged_in_username/avatar.gif");
+                                       $res = copy($_FILES['avatar']['tmp_name'], "$maj_image_directory/members/$maj_logged_in_username/avatar.gif");
                                        unlink($_FILES['avatar']['tmp_name']);
                                }
 
                                if (($_FILES['avatar']['type']=="image/jpeg") or ($_FILES['avatar']['type']=="image/pjpeg")) {
-                                       $res = copy($_FILES['avatar']['tmp_name'], "images/members/$maj_logged_in_username/avatar.jpg");
+                                       $res = copy($_FILES['avatar']['tmp_name'], "$maj_image_directory/members/$maj_logged_in_username/avatar.jpg");
                                        unlink($_FILES['avatar']['tmp_name']);
                                }
 
                                if ($_FILES['avatar']['type']=="image/png") {
-                                       $res = copy($_FILES['avatar']['tmp_name'], "images/members/$maj_logged_in_username/avatar.png");
+                                       $res = copy($_FILES['avatar']['tmp_name'], "$maj_image_directory/members/$maj_logged_in_username/avatar.png");
                                        unlink($_FILES['avatar']['tmp_name']);
                                }
                        }
@@ -244,26 +244,26 @@ if (isset($_FILES['avatar']) and !empty($_FILES['avatar'])) {
        }
 }
 
-if (isset($_POST['vacation']) and !empty($_POST['vacation']) and ($_POST['vacation'] == "on") and !file_exists("data/members/active/$maj_logged_in_username/bb-vacation.txt")) {
-       touch("data/members/active/$maj_logged_in_username/bb-vacation.txt");
+if (isset($_POST['vacation']) and !empty($_POST['vacation']) and ($_POST['vacation'] == "on") and !file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt")) {
+       touch("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt");
 }
 
 if (!isset($_POST['vacation']) or empty($_POST['vacation'])) {
        if (isset($_POST['edit']) and ($_POST['edit'] == "on")) {
-               if (file_exists("data/members/active/$maj_logged_in_username/bb-vacation.txt")) {
-                       unlink("data/members/active/$maj_logged_in_username/bb-vacation.txt");
+               if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt")) {
+                       unlink("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt");
                }
        }
 }
 
-if (file_exists("data/members/active/$maj_logged_in_username/key.txt") and !file_exists("data/members/active/$maj_logged_in_username/bb-vacation.txt")) {
-       touch("data/members/active/$maj_logged_in_username/bb-vacation.txt");
+if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/key.txt") and !file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt")) {
+       touch("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt");
 }
 
 
 if (isset($_POST['bday']) and !empty($_POST['bday']) and (mb_strlen($_POST['bday']) == "8") and is_numeric($_POST['bday']) and ((round((date("Ymd", time() + $maj_offset) - $_POST['bday']) * 0.0001)) >= $minage) and ((round((date("Ymd", time() + $maj_offset) - $_POST['bday']) * 0.0001)) <= $maxage)) {
 
-       $fp_bday_txt = fopen("data/members/active/$maj_logged_in_username/bday.txt","w");
+       $fp_bday_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/bday.txt","w");
        fwrite($fp_bday_txt,strip_tags($_POST['bday']));
        fclose($fp_bday_txt);
 
@@ -271,8 +271,8 @@ if (isset($_POST['bday']) and !empty($_POST['bday']) and (mb_strlen($_POST['bday
 
 if (isset($_POST['current_passwd']) and !empty($_POST['current_passwd']) and isset($_POST['new_passwd']) and !empty($_POST['new_passwd']) and isset($_POST['confirm_passwd']) and !empty($_POST['confirm_passwd'])) {
 
-       if (file_exists("data/bb-passlen.txt")) {
-               $pass_len = file_get_contents("data/bb-passlen.txt");
+       if (file_exists("$maj_data_directory/bb-passlen.txt")) {
+               $pass_len = file_get_contents("$maj_data_directory/bb-passlen.txt");
        }
        else {
                $pass_len = 8;
@@ -297,11 +297,11 @@ if (isset($_POST['current_passwd']) and !empty($_POST['current_passwd']) and iss
                $confirm_passwd = md5($confirm_passwd);
                $confirm_passwd = crypt($confirm_passwd, $confirm_passwd);
               
-               if (($current_passwd != file_get_contents("data/members/active/$maj_logged_in_username/password.txt")) or ($new_passwd != $confirm_passwd)) {
+               if (($current_passwd != file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/password.txt")) or ($new_passwd != $confirm_passwd)) {
                        echo "<p>Passwords do not match.</p>";
                }
                else {
-                       $fp_passwd_txt = fopen("data/members/active/$maj_logged_in_username/password.txt","w");
+                       $fp_passwd_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/password.txt","w");
                        fwrite($fp_passwd_txt,$new_passwd);
                        fclose($fp_passwd_txt);
                        $login_url = "http://" . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/login.php";
@@ -322,24 +322,24 @@ if (isset($_POST['current_passwd']) and !empty($_POST['current_passwd']) and iss
 <?php
 
 echo "<b>";
-readfile("data/members/active/$maj_logged_in_username/firstname.txt");
+readfile("$maj_data_directory/members/active/$maj_logged_in_username/firstname.txt");
 echo " ";
-readfile("data/members/active/$maj_logged_in_username/lastname.txt");
+readfile("$maj_data_directory/members/active/$maj_logged_in_username/lastname.txt");
 echo "</b>";
 
-if (file_exists("data/members/active/$maj_logged_in_username/rank.txt") and file_exists("data/rank.txt")) {
-       $rank = file_get_contents("data/members/active/$maj_logged_in_username/rank.txt");
+if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/rank.txt") and file_exists("$maj_data_directory/rank.txt")) {
+       $rank = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/rank.txt");
        echo "<br>$rank";
 }
-elseif (!file_exists("data/members/active/$maj_logged_in_username/rank.txt") and file_exists("data/rank.txt")) {
+elseif (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username/rank.txt") and file_exists("$maj_data_directory/rank.txt")) {
        echo "<br>member";
 }
 
 echo "</p><p align=right>";
 
-if (file_exists("data/members/active/$maj_logged_in_username/bday.txt")) {
+if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bday.txt")) {
 
-       $bday = file_get_contents("data/members/active/$maj_logged_in_username/bday.txt");
+       $bday = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/bday.txt");
        $bday_year = mb_substr($bday,0,4);
        $bday_month = mb_substr($bday,4,2);
        $bday_day = mb_substr($bday,6,2);
@@ -347,8 +347,8 @@ if (file_exists("data/members/active/$maj_logged_in_username/bday.txt")) {
        echo "birthdate<code>&nbsp;$bday&nbsp;</code><br>";
 }
 
-if (file_exists("data/members/active/$maj_logged_in_username/timestamp.txt")) {
-       $joined = file_get_contents("data/members/active/$maj_logged_in_username/timestamp.txt");
+if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/timestamp.txt")) {
+       $joined = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/timestamp.txt");
        $joined_year = mb_substr($joined,0,4);
        $joined_month = mb_substr($joined,4,2);
        $joined_day = mb_substr($joined,6,2);
@@ -358,8 +358,8 @@ if (file_exists("data/members/active/$maj_logged_in_username/timestamp.txt")) {
        echo "member since<code>&nbsp;$member_since&nbsp;</code><br>";
 }
 
-if (file_exists("data/members/active/$maj_logged_in_username/bb-last.txt")) {
-       $lastlog = file_get_contents("data/members/active/$maj_logged_in_username/bb-last.txt");
+if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-last.txt")) {
+       $lastlog = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/bb-last.txt");
        $lastlog_year = mb_substr($lastlog,0,4);
        $lastlog_month = mb_substr($lastlog,4,2);
        $lastlog_day = mb_substr($lastlog,6,2);
@@ -376,270 +376,270 @@ if (file_exists("data/members/active/$maj_logged_in_username/bb-last.txt")) {
 <form enctype="multipart/form-data" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
 <input type="hidden" name="edit" value="on">
 
-<?php if (!file_exists("data/members/active/$maj_logged_in_username/key.txt")) { ?>
-<tr><td bgcolor="#ffffff"><p>e-mail address*</p></td><td bgcolor="#ffffff" colspan="2"><input autofocus required class="input" type="email" autocomplete="off" name="email" maxlength="60" value="<?php readfile("data/members/active/$maj_logged_in_username/email.txt"); ?>"></td></tr>
+<?php if (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username/key.txt")) { ?>
+<tr><td bgcolor="#ffffff"><p>e-mail address*</p></td><td bgcolor="#ffffff" colspan="2"><input autofocus required class="input" type="email" autocomplete="off" name="email" maxlength="60" value="<?php readfile("$maj_data_directory/members/active/$maj_logged_in_username/email.txt"); ?>"></td></tr>
 <?php } ?>
 
-<tr><td bgcolor="#ffffff"><p>website</p></td><td bgcolor="#ffffff" colspan="2"><input class="input" type="url" autocomplete="off" name="url" maxlength="300" <?php if (file_exists("data/members/active/$maj_logged_in_username/url.txt")) { echo "value=\""; readfile("data/members/active/$maj_logged_in_username/url.txt"); echo "\""; } ?>></td></tr>
+<tr><td bgcolor="#ffffff"><p>website</p></td><td bgcolor="#ffffff" colspan="2"><input class="input" type="url" autocomplete="off" name="url" maxlength="300" <?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/url.txt")) { echo "value=\""; readfile("$maj_data_directory/members/active/$maj_logged_in_username/url.txt"); echo "\""; } ?>></td></tr>
 
 <tr><td bgcolor="#ffffff"><p>country</p></td><td bgcolor="#ffffff" colspan="2">
 
 <select class="input" name="country" required>
-<option<?php if (!file_exists("data/members/active/$maj_logged_in_username/country.txt")) { echo " selected"; } ?> value=""></option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AF") { echo " selected"; } ?> value="AF">Afghanistan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AX") { echo " selected"; } ?> value="AX">Aland (Ahvenanmaa) Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AL") { echo " selected"; } ?> value="AL">Albania</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "DZ") { echo " selected"; } ?> value="DZ">Algeria</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AS") { echo " selected"; } ?> value="AS">American Samoa</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AD") { echo " selected"; } ?> value="AD">Andorra</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AO") { echo " selected"; } ?> value="AO">Angola</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AI") { echo " selected"; } ?> value="AI">Anguilla</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AQ") { echo " selected"; } ?> value="AQ">Antarctica</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AG") { echo " selected"; } ?> value="AG">Antigua & Barbuda</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AR") { echo " selected"; } ?> value="AR">Argentina</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AM") { echo " selected"; } ?> value="AM">Armenia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AW") { echo " selected"; } ?> value="AW">Aruba</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AU") { echo " selected"; } ?> value="AU">Australia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AT") { echo " selected"; } ?> value="AT">Austria</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AZ") { echo " selected"; } ?> value="AZ">Azerbaijan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BS") { echo " selected"; } ?> value="BS">Bahamas</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BH") { echo " selected"; } ?> value="BH">Bahrain</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BD") { echo " selected"; } ?> value="BD">Bangladesh</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BB") { echo " selected"; } ?> value="BB">Barbados</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BY") { echo " selected"; } ?> value="BY">Belarus</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BE") { echo " selected"; } ?> value="BE">Belgium</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BZ") { echo " selected"; } ?> value="BZ">Belize</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BJ") { echo " selected"; } ?> value="BJ">Benin</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BM") { echo " selected"; } ?> value="BM">Bermuda</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BT") { echo " selected"; } ?> value="BT">Bhutan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BO") { echo " selected"; } ?> value="BO">Bolivia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BA") { echo " selected"; } ?> value="BA">Bosnia & Herzegovina</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BW") { echo " selected"; } ?> value="BW">Botswana</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BV") { echo " selected"; } ?> value="BV">Bouvet Island</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BR") { echo " selected"; } ?> value="BR">Brazil</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "IO") { echo " selected"; } ?> value="IO">British Indian Ocean Territory</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BN") { echo " selected"; } ?> value="BN">Brunei Darussalam</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BG") { echo " selected"; } ?> value="BG">Bulgaria</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BF") { echo " selected"; } ?> value="BF">Burkina Faso</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "BI") { echo " selected"; } ?> value="BI">Burundi</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KH") { echo " selected"; } ?> value="KH">Cambodia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CM") { echo " selected"; } ?> value="CM">Cameroon</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CA") { echo " selected"; } ?> value="CA">Canada</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CV") { echo " selected"; } ?> value="CV">Cape Verde</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KY") { echo " selected"; } ?> value="KY">Cayman Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CF") { echo " selected"; } ?> value="CF">Central African Republic</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TD") { echo " selected"; } ?> value="TD">Chad</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CL") { echo " selected"; } ?> value="CL">Chile</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CN") { echo " selected"; } ?> value="CN">China</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CX") { echo " selected"; } ?> value="CX">Christmas Island</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CC") { echo " selected"; } ?> value="CC">Cocos (Keeling) Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CO") { echo " selected"; } ?> value="CO">Colombia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KM") { echo " selected"; } ?> value="KM">Comoros</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CG") { echo " selected"; } ?> value="CG">Congo</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CD") { echo " selected"; } ?> value="CD">Congo (Democratic Republic)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CK") { echo " selected"; } ?> value="CK">Cook Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CR") { echo " selected"; } ?> value="CR">Costa Rica</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CI") { echo " selected"; } ?> value="CI">Cote D'Ivoire</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "HR") { echo " selected"; } ?> value="HR">Croatia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CU") { echo " selected"; } ?> value="CU">Cuba</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CY") { echo " selected"; } ?> value="CY">Cyprus</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CZ") { echo " selected"; } ?> value="CZ">Czech Republic</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "DK") { echo " selected"; } ?> value="DK">Denmark</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "DJ") { echo " selected"; } ?> value="DJ">Djibouti</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "DM") { echo " selected"; } ?> value="DM">Dominica</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "DO") { echo " selected"; } ?> value="DO">Dominican Republic</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "EC") { echo " selected"; } ?> value="EC">Ecuador</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "EG") { echo " selected"; } ?> value="EG">Egypt</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SV") { echo " selected"; } ?> value="SV">El Salvador</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GQ") { echo " selected"; } ?> value="GQ">Equatorial Guinea</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "ER") { echo " selected"; } ?> value="ER">Eritrea</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "EE") { echo " selected"; } ?> value="EE">Estonia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "ET") { echo " selected"; } ?> value="ET">Ethiopia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "FK") { echo " selected"; } ?> value="FK">Falkland Islands (Malvinas)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "FO") { echo " selected"; } ?> value="FO">Faroe Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "FJ") { echo " selected"; } ?> value="FJ">Fiji</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "FI") { echo " selected"; } ?> value="FI">Finland</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "FR") { echo " selected"; } ?> value="FR">France</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GF") { echo " selected"; } ?> value="GF">French Guiana</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PF") { echo " selected"; } ?> value="PF">French Polynesia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TF") { echo " selected"; } ?> value="TF">French Southern Territories</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GA") { echo " selected"; } ?> value="GA">Gabon</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GM") { echo " selected"; } ?> value="GM">Gambia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GE") { echo " selected"; } ?> value="GE">Georgia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "DE") { echo " selected"; } ?> value="DE">Germany</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GH") { echo " selected"; } ?> value="GH">Ghana</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GI") { echo " selected"; } ?> value="GI">Gibraltar</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GR") { echo " selected"; } ?> value="GR">Greece</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GL") { echo " selected"; } ?> value="GL">Greenland</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GD") { echo " selected"; } ?> value="GD">Grenada</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GP") { echo " selected"; } ?> value="GP">Guadeloupe</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GU") { echo " selected"; } ?> value="GU">Guam</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GT") { echo " selected"; } ?> value="GT">Guatemala</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GG") { echo " selected"; } ?> value="GG">Guernsey</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GN") { echo " selected"; } ?> value="GN">Guinea</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GW") { echo " selected"; } ?> value="GW">Guinea-Bissau</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GY") { echo " selected"; } ?> value="GY">Guyana</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "HT") { echo " selected"; } ?> value="HT">Haiti</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "HM") { echo " selected"; } ?> value="HM">Heard Island & Mcdonald Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "VA") { echo " selected"; } ?> value="VA">Holy See (Vatican City State)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "HN") { echo " selected"; } ?> value="HN">Honduras</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "HK") { echo " selected"; } ?> value="HK">Hong Kong</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "HU") { echo " selected"; } ?> value="HU">Hungary</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "IS") { echo " selected"; } ?> value="IS">Iceland</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "IN") { echo " selected"; } ?> value="IN">India</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "ID") { echo " selected"; } ?> value="ID">Indonesia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "IR") { echo " selected"; } ?> value="IR">Iran (Islamic Republic)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "IQ") { echo " selected"; } ?> value="IQ">Iraq</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "IE") { echo " selected"; } ?> value="IE">Ireland</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "IM") { echo " selected"; } ?> value="IM">Isle Of Man</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "IL") { echo " selected"; } ?> value="IL">Israel</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "IT") { echo " selected"; } ?> value="IT">Italy</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "JM") { echo " selected"; } ?> value="JM">Jamaica</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "JP") { echo " selected"; } ?> value="JP">Japan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "JE") { echo " selected"; } ?> value="JE">Jersey</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "JO") { echo " selected"; } ?> value="JO">Jordan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KZ") { echo " selected"; } ?> value="KZ">Kazakhstan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KE") { echo " selected"; } ?> value="KE">Kenya</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KI") { echo " selected"; } ?> value="KI">Kiribati</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KP") { echo " selected"; } ?> value="KP">Korea (Democratic People's Republic)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KR") { echo " selected"; } ?> value="KR">Korea (Republic)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KW") { echo " selected"; } ?> value="KW">Kuwait</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KG") { echo " selected"; } ?> value="KG">Kyrgyzstan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LA") { echo " selected"; } ?> value="LA">Laos</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LV") { echo " selected"; } ?> value="LV">Latvia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LB") { echo " selected"; } ?> value="LB">Lebanon</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LS") { echo " selected"; } ?> value="LS">Lesotho</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LR") { echo " selected"; } ?> value="LR">Liberia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LY") { echo " selected"; } ?> value="LY">Libyan Arab Jamahiriya</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LI") { echo " selected"; } ?> value="LI">Liechtenstein</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LT") { echo " selected"; } ?> value="LT">Lithuania</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LU") { echo " selected"; } ?> value="LU">Luxembourg</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MO") { echo " selected"; } ?> value="MO">Macao</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MK") { echo " selected"; } ?> value="MK">Macedonia (Yugoslav Republic)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MG") { echo " selected"; } ?> value="MG">Madagascar</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MW") { echo " selected"; } ?> value="MW">Malawi</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MY") { echo " selected"; } ?> value="MY">Malaysia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MV") { echo " selected"; } ?> value="MV">Maldives</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "ML") { echo " selected"; } ?> value="ML">Mali</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MT") { echo " selected"; } ?> value="MT">Malta</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MH") { echo " selected"; } ?> value="MH">Marshall Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MQ") { echo " selected"; } ?> value="MQ">Martinique</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MR") { echo " selected"; } ?> value="MR">Mauritania</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MU") { echo " selected"; } ?> value="MU">Mauritius</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "YT") { echo " selected"; } ?> value="YT">Mayotte</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MX") { echo " selected"; } ?> value="MX">Mexico</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "FM") { echo " selected"; } ?> value="FM">Micronesia (Federated States)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MD") { echo " selected"; } ?> value="MD">Moldova (Republic)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MC") { echo " selected"; } ?> value="MC">Monaco</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MN") { echo " selected"; } ?> value="MN">Mongolia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MS") { echo " selected"; } ?> value="MS">Montserrat</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MA") { echo " selected"; } ?> value="MA">Morocco</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MZ") { echo " selected"; } ?> value="MZ">Mozambique</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MM") { echo " selected"; } ?> value="MM">Myanmar</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NA") { echo " selected"; } ?> value="NA">Namibia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NR") { echo " selected"; } ?> value="NR">Nauru</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NP") { echo " selected"; } ?> value="NP">Nepal</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NL") { echo " selected"; } ?> value="NL">Netherlands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AN") { echo " selected"; } ?> value="AN">Netherlands Antilles</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NC") { echo " selected"; } ?> value="NC">New Caledonia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NZ") { echo " selected"; } ?> value="NZ">New Zealand</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NI") { echo " selected"; } ?> value="NI">Nicaragua</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NE") { echo " selected"; } ?> value="NE">Niger</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NG") { echo " selected"; } ?> value="NG">Nigeria</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NU") { echo " selected"; } ?> value="NU">Niue</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NF") { echo " selected"; } ?> value="NF">Norfolk Island</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "MP") { echo " selected"; } ?> value="MP">Northern Mariana Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "NO") { echo " selected"; } ?> value="NO">Norway</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "OM") { echo " selected"; } ?> value="OM">Oman</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PK") { echo " selected"; } ?> value="PK">Pakistan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PW") { echo " selected"; } ?> value="PW">Palau</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PS") { echo " selected"; } ?> value="PS">Palestinian Territory</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PA") { echo " selected"; } ?> value="PA">Panama</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PG") { echo " selected"; } ?> value="PG">Papua New Guinea</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PY") { echo " selected"; } ?> value="PY">Paraguay</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PE") { echo " selected"; } ?> value="PE">Peru</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PH") { echo " selected"; } ?> value="PH">Philippines</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PN") { echo " selected"; } ?> value="PN">Pitcairn</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PL") { echo " selected"; } ?> value="PL">Poland</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PT") { echo " selected"; } ?> value="PT">Portugal</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PR") { echo " selected"; } ?> value="PR">Puerto Rico</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "QA") { echo " selected"; } ?> value="QA">Qatar</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "RE") { echo " selected"; } ?> value="RE">Reunion</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "RO") { echo " selected"; } ?> value="RO">Romania</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "RU") { echo " selected"; } ?> value="RU">Russian Federation</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "RW") { echo " selected"; } ?> value="RW">Rwanda</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SH") { echo " selected"; } ?> value="SH">Saint Helena</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "KN") { echo " selected"; } ?> value="KN">Saint Kitts & Nevis</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LC") { echo " selected"; } ?> value="LC">Saint Lucia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "PM") { echo " selected"; } ?> value="PM">Saint Pierre & Miquelon</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "VC") { echo " selected"; } ?> value="VC">Saint Vincent & The Grenadines</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "WS") { echo " selected"; } ?> value="WS">Samoa</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SM") { echo " selected"; } ?> value="SM">San Marino</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "ST") { echo " selected"; } ?> value="ST">Sao Tome & Principe</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SA") { echo " selected"; } ?> value="SA">Saudi Arabia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SN") { echo " selected"; } ?> value="SN">Senegal</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CS") { echo " selected"; } ?> value="CS">Serbia & Montenegro</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SC") { echo " selected"; } ?> value="SC">Seychelles</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SL") { echo " selected"; } ?> value="SL">Sierra Leone</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SG") { echo " selected"; } ?> value="SG">Singapore</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SK") { echo " selected"; } ?> value="SK">Slovakia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SI") { echo " selected"; } ?> value="SI">Slovenia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SB") { echo " selected"; } ?> value="SB">Solomon Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SO") { echo " selected"; } ?> value="SO">Somalia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "ZA") { echo " selected"; } ?> value="ZA">South Africa</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GS") { echo " selected"; } ?> value="GS">South Georgia & The South Sandwich Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "ES") { echo " selected"; } ?> value="ES">Spain</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "LK") { echo " selected"; } ?> value="LK">Sri Lanka</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SD") { echo " selected"; } ?> value="SD">Sudan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SR") { echo " selected"; } ?> value="SR">Suriname</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SJ") { echo " selected"; } ?> value="SJ">Svalbard & Jan Mayen</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SZ") { echo " selected"; } ?> value="SZ">Swaziland</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SE") { echo " selected"; } ?> value="SE">Sweden</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "CH") { echo " selected"; } ?> value="CH">Switzerland</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "SY") { echo " selected"; } ?> value="SY">Syrian Arab Republic</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TW") { echo " selected"; } ?> value="TW">Taiwan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TJ") { echo " selected"; } ?> value="TJ">Tajikistan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TZ") { echo " selected"; } ?> value="TZ">Tanzania (United Republic)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TH") { echo " selected"; } ?> value="TH">Thailand</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TL") { echo " selected"; } ?> value="TL">Timor-Leste</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TG") { echo " selected"; } ?> value="TG">Togo</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TK") { echo " selected"; } ?> value="TK">Tokelau</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TO") { echo " selected"; } ?> value="TO">Tonga</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TT") { echo " selected"; } ?> value="TT">Trinidad & Tobago</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TN") { echo " selected"; } ?> value="TN">Tunisia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TR") { echo " selected"; } ?> value="TR">Turkey</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TM") { echo " selected"; } ?> value="TM">Turkmenistan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TC") { echo " selected"; } ?> value="TC">Turks & Caicos Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "TV") { echo " selected"; } ?> value="TV">Tuvalu</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "UG") { echo " selected"; } ?> value="UG">Uganda</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "UA") { echo " selected"; } ?> value="UA">Ukraine</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "AE") { echo " selected"; } ?> value="AE">United Arab Emirates</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "GB") { echo " selected"; } ?> value="GB">United Kingdom</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "US") { echo " selected"; } ?> value="US">United States</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "UM") { echo " selected"; } ?> value="UM">United States Minor Outlying Islands</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "UY") { echo " selected"; } ?> value="UY">Uruguay</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "UZ") { echo " selected"; } ?> value="UZ">Uzbekistan</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "VU") { echo " selected"; } ?> value="VU">Vanuatu</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "VE") { echo " selected"; } ?> value="VE">Venezuela</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "VN") { echo " selected"; } ?> value="VN">Vietnam</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "VG") { echo " selected"; } ?> value="VG">Virgin Islands (British)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "VI") { echo " selected"; } ?> value="VI">Virgin Islands (US)</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "WF") { echo " selected"; } ?> value="WF">Wallis & Futuna</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "EH") { echo " selected"; } ?> value="EH">Western Sahara</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "YE") { echo " selected"; } ?> value="YE">Yemen</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "ZM") { echo " selected"; } ?> value="ZM">Zambia</option>
-<option<?php if (file_get_contents("data/members/active/$maj_logged_in_username/country.txt") == "ZW") { echo " selected"; } ?> value="ZW">Zimbabwe</option>
+<option<?php if (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username/country.txt")) { echo " selected"; } ?> value=""></option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AF") { echo " selected"; } ?> value="AF">Afghanistan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AX") { echo " selected"; } ?> value="AX">Aland (Ahvenanmaa) Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AL") { echo " selected"; } ?> value="AL">Albania</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DZ") { echo " selected"; } ?> value="DZ">Algeria</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AS") { echo " selected"; } ?> value="AS">American Samoa</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AD") { echo " selected"; } ?> value="AD">Andorra</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AO") { echo " selected"; } ?> value="AO">Angola</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AI") { echo " selected"; } ?> value="AI">Anguilla</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AQ") { echo " selected"; } ?> value="AQ">Antarctica</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AG") { echo " selected"; } ?> value="AG">Antigua & Barbuda</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AR") { echo " selected"; } ?> value="AR">Argentina</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AM") { echo " selected"; } ?> value="AM">Armenia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AW") { echo " selected"; } ?> value="AW">Aruba</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AU") { echo " selected"; } ?> value="AU">Australia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AT") { echo " selected"; } ?> value="AT">Austria</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AZ") { echo " selected"; } ?> value="AZ">Azerbaijan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BS") { echo " selected"; } ?> value="BS">Bahamas</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BH") { echo " selected"; } ?> value="BH">Bahrain</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BD") { echo " selected"; } ?> value="BD">Bangladesh</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BB") { echo " selected"; } ?> value="BB">Barbados</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BY") { echo " selected"; } ?> value="BY">Belarus</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BE") { echo " selected"; } ?> value="BE">Belgium</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BZ") { echo " selected"; } ?> value="BZ">Belize</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BJ") { echo " selected"; } ?> value="BJ">Benin</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BM") { echo " selected"; } ?> value="BM">Bermuda</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BT") { echo " selected"; } ?> value="BT">Bhutan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BO") { echo " selected"; } ?> value="BO">Bolivia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BA") { echo " selected"; } ?> value="BA">Bosnia & Herzegovina</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BW") { echo " selected"; } ?> value="BW">Botswana</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BV") { echo " selected"; } ?> value="BV">Bouvet Island</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BR") { echo " selected"; } ?> value="BR">Brazil</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IO") { echo " selected"; } ?> value="IO">British Indian Ocean Territory</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BN") { echo " selected"; } ?> value="BN">Brunei Darussalam</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BG") { echo " selected"; } ?> value="BG">Bulgaria</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BF") { echo " selected"; } ?> value="BF">Burkina Faso</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BI") { echo " selected"; } ?> value="BI">Burundi</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KH") { echo " selected"; } ?> value="KH">Cambodia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CM") { echo " selected"; } ?> value="CM">Cameroon</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CA") { echo " selected"; } ?> value="CA">Canada</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CV") { echo " selected"; } ?> value="CV">Cape Verde</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KY") { echo " selected"; } ?> value="KY">Cayman Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CF") { echo " selected"; } ?> value="CF">Central African Republic</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TD") { echo " selected"; } ?> value="TD">Chad</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CL") { echo " selected"; } ?> value="CL">Chile</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CN") { echo " selected"; } ?> value="CN">China</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CX") { echo " selected"; } ?> value="CX">Christmas Island</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CC") { echo " selected"; } ?> value="CC">Cocos (Keeling) Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CO") { echo " selected"; } ?> value="CO">Colombia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KM") { echo " selected"; } ?> value="KM">Comoros</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CG") { echo " selected"; } ?> value="CG">Congo</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CD") { echo " selected"; } ?> value="CD">Congo (Democratic Republic)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CK") { echo " selected"; } ?> value="CK">Cook Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CR") { echo " selected"; } ?> value="CR">Costa Rica</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CI") { echo " selected"; } ?> value="CI">Cote D'Ivoire</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HR") { echo " selected"; } ?> value="HR">Croatia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CU") { echo " selected"; } ?> value="CU">Cuba</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CY") { echo " selected"; } ?> value="CY">Cyprus</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CZ") { echo " selected"; } ?> value="CZ">Czech Republic</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DK") { echo " selected"; } ?> value="DK">Denmark</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DJ") { echo " selected"; } ?> value="DJ">Djibouti</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DM") { echo " selected"; } ?> value="DM">Dominica</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DO") { echo " selected"; } ?> value="DO">Dominican Republic</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "EC") { echo " selected"; } ?> value="EC">Ecuador</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "EG") { echo " selected"; } ?> value="EG">Egypt</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SV") { echo " selected"; } ?> value="SV">El Salvador</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GQ") { echo " selected"; } ?> value="GQ">Equatorial Guinea</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ER") { echo " selected"; } ?> value="ER">Eritrea</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "EE") { echo " selected"; } ?> value="EE">Estonia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ET") { echo " selected"; } ?> value="ET">Ethiopia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FK") { echo " selected"; } ?> value="FK">Falkland Islands (Malvinas)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FO") { echo " selected"; } ?> value="FO">Faroe Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FJ") { echo " selected"; } ?> value="FJ">Fiji</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FI") { echo " selected"; } ?> value="FI">Finland</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FR") { echo " selected"; } ?> value="FR">France</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GF") { echo " selected"; } ?> value="GF">French Guiana</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PF") { echo " selected"; } ?> value="PF">French Polynesia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TF") { echo " selected"; } ?> value="TF">French Southern Territories</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GA") { echo " selected"; } ?> value="GA">Gabon</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GM") { echo " selected"; } ?> value="GM">Gambia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GE") { echo " selected"; } ?> value="GE">Georgia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DE") { echo " selected"; } ?> value="DE">Germany</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GH") { echo " selected"; } ?> value="GH">Ghana</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GI") { echo " selected"; } ?> value="GI">Gibraltar</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GR") { echo " selected"; } ?> value="GR">Greece</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GL") { echo " selected"; } ?> value="GL">Greenland</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GD") { echo " selected"; } ?> value="GD">Grenada</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GP") { echo " selected"; } ?> value="GP">Guadeloupe</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GU") { echo " selected"; } ?> value="GU">Guam</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GT") { echo " selected"; } ?> value="GT">Guatemala</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GG") { echo " selected"; } ?> value="GG">Guernsey</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GN") { echo " selected"; } ?> value="GN">Guinea</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GW") { echo " selected"; } ?> value="GW">Guinea-Bissau</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GY") { echo " selected"; } ?> value="GY">Guyana</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HT") { echo " selected"; } ?> value="HT">Haiti</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HM") { echo " selected"; } ?> value="HM">Heard Island & Mcdonald Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VA") { echo " selected"; } ?> value="VA">Holy See (Vatican City State)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HN") { echo " selected"; } ?> value="HN">Honduras</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HK") { echo " selected"; } ?> value="HK">Hong Kong</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HU") { echo " selected"; } ?> value="HU">Hungary</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IS") { echo " selected"; } ?> value="IS">Iceland</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IN") { echo " selected"; } ?> value="IN">India</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ID") { echo " selected"; } ?> value="ID">Indonesia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IR") { echo " selected"; } ?> value="IR">Iran (Islamic Republic)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IQ") { echo " selected"; } ?> value="IQ">Iraq</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IE") { echo " selected"; } ?> value="IE">Ireland</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IM") { echo " selected"; } ?> value="IM">Isle Of Man</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IL") { echo " selected"; } ?> value="IL">Israel</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IT") { echo " selected"; } ?> value="IT">Italy</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "JM") { echo " selected"; } ?> value="JM">Jamaica</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "JP") { echo " selected"; } ?> value="JP">Japan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "JE") { echo " selected"; } ?> value="JE">Jersey</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "JO") { echo " selected"; } ?> value="JO">Jordan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KZ") { echo " selected"; } ?> value="KZ">Kazakhstan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KE") { echo " selected"; } ?> value="KE">Kenya</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KI") { echo " selected"; } ?> value="KI">Kiribati</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KP") { echo " selected"; } ?> value="KP">Korea (Democratic People's Republic)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KR") { echo " selected"; } ?> value="KR">Korea (Republic)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KW") { echo " selected"; } ?> value="KW">Kuwait</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KG") { echo " selected"; } ?> value="KG">Kyrgyzstan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LA") { echo " selected"; } ?> value="LA">Laos</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LV") { echo " selected"; } ?> value="LV">Latvia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LB") { echo " selected"; } ?> value="LB">Lebanon</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LS") { echo " selected"; } ?> value="LS">Lesotho</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LR") { echo " selected"; } ?> value="LR">Liberia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LY") { echo " selected"; } ?> value="LY">Libyan Arab Jamahiriya</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LI") { echo " selected"; } ?> value="LI">Liechtenstein</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LT") { echo " selected"; } ?> value="LT">Lithuania</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LU") { echo " selected"; } ?> value="LU">Luxembourg</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MO") { echo " selected"; } ?> value="MO">Macao</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MK") { echo " selected"; } ?> value="MK">Macedonia (Yugoslav Republic)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MG") { echo " selected"; } ?> value="MG">Madagascar</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MW") { echo " selected"; } ?> value="MW">Malawi</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MY") { echo " selected"; } ?> value="MY">Malaysia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MV") { echo " selected"; } ?> value="MV">Maldives</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ML") { echo " selected"; } ?> value="ML">Mali</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MT") { echo " selected"; } ?> value="MT">Malta</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MH") { echo " selected"; } ?> value="MH">Marshall Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MQ") { echo " selected"; } ?> value="MQ">Martinique</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MR") { echo " selected"; } ?> value="MR">Mauritania</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MU") { echo " selected"; } ?> value="MU">Mauritius</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "YT") { echo " selected"; } ?> value="YT">Mayotte</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MX") { echo " selected"; } ?> value="MX">Mexico</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FM") { echo " selected"; } ?> value="FM">Micronesia (Federated States)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MD") { echo " selected"; } ?> value="MD">Moldova (Republic)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MC") { echo " selected"; } ?> value="MC">Monaco</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MN") { echo " selected"; } ?> value="MN">Mongolia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MS") { echo " selected"; } ?> value="MS">Montserrat</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MA") { echo " selected"; } ?> value="MA">Morocco</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MZ") { echo " selected"; } ?> value="MZ">Mozambique</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MM") { echo " selected"; } ?> value="MM">Myanmar</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NA") { echo " selected"; } ?> value="NA">Namibia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NR") { echo " selected"; } ?> value="NR">Nauru</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NP") { echo " selected"; } ?> value="NP">Nepal</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NL") { echo " selected"; } ?> value="NL">Netherlands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AN") { echo " selected"; } ?> value="AN">Netherlands Antilles</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NC") { echo " selected"; } ?> value="NC">New Caledonia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NZ") { echo " selected"; } ?> value="NZ">New Zealand</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NI") { echo " selected"; } ?> value="NI">Nicaragua</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NE") { echo " selected"; } ?> value="NE">Niger</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NG") { echo " selected"; } ?> value="NG">Nigeria</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NU") { echo " selected"; } ?> value="NU">Niue</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NF") { echo " selected"; } ?> value="NF">Norfolk Island</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MP") { echo " selected"; } ?> value="MP">Northern Mariana Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NO") { echo " selected"; } ?> value="NO">Norway</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "OM") { echo " selected"; } ?> value="OM">Oman</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PK") { echo " selected"; } ?> value="PK">Pakistan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PW") { echo " selected"; } ?> value="PW">Palau</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PS") { echo " selected"; } ?> value="PS">Palestinian Territory</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PA") { echo " selected"; } ?> value="PA">Panama</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PG") { echo " selected"; } ?> value="PG">Papua New Guinea</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PY") { echo " selected"; } ?> value="PY">Paraguay</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PE") { echo " selected"; } ?> value="PE">Peru</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PH") { echo " selected"; } ?> value="PH">Philippines</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PN") { echo " selected"; } ?> value="PN">Pitcairn</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PL") { echo " selected"; } ?> value="PL">Poland</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PT") { echo " selected"; } ?> value="PT">Portugal</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PR") { echo " selected"; } ?> value="PR">Puerto Rico</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "QA") { echo " selected"; } ?> value="QA">Qatar</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "RE") { echo " selected"; } ?> value="RE">Reunion</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "RO") { echo " selected"; } ?> value="RO">Romania</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "RU") { echo " selected"; } ?> value="RU">Russian Federation</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "RW") { echo " selected"; } ?> value="RW">Rwanda</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SH") { echo " selected"; } ?> value="SH">Saint Helena</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KN") { echo " selected"; } ?> value="KN">Saint Kitts & Nevis</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LC") { echo " selected"; } ?> value="LC">Saint Lucia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PM") { echo " selected"; } ?> value="PM">Saint Pierre & Miquelon</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VC") { echo " selected"; } ?> value="VC">Saint Vincent & The Grenadines</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "WS") { echo " selected"; } ?> value="WS">Samoa</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SM") { echo " selected"; } ?> value="SM">San Marino</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ST") { echo " selected"; } ?> value="ST">Sao Tome & Principe</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SA") { echo " selected"; } ?> value="SA">Saudi Arabia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SN") { echo " selected"; } ?> value="SN">Senegal</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CS") { echo " selected"; } ?> value="CS">Serbia & Montenegro</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SC") { echo " selected"; } ?> value="SC">Seychelles</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SL") { echo " selected"; } ?> value="SL">Sierra Leone</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SG") { echo " selected"; } ?> value="SG">Singapore</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SK") { echo " selected"; } ?> value="SK">Slovakia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SI") { echo " selected"; } ?> value="SI">Slovenia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SB") { echo " selected"; } ?> value="SB">Solomon Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SO") { echo " selected"; } ?> value="SO">Somalia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ZA") { echo " selected"; } ?> value="ZA">South Africa</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GS") { echo " selected"; } ?> value="GS">South Georgia & The South Sandwich Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ES") { echo " selected"; } ?> value="ES">Spain</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LK") { echo " selected"; } ?> value="LK">Sri Lanka</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SD") { echo " selected"; } ?> value="SD">Sudan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SR") { echo " selected"; } ?> value="SR">Suriname</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SJ") { echo " selected"; } ?> value="SJ">Svalbard & Jan Mayen</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SZ") { echo " selected"; } ?> value="SZ">Swaziland</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SE") { echo " selected"; } ?> value="SE">Sweden</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CH") { echo " selected"; } ?> value="CH">Switzerland</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SY") { echo " selected"; } ?> value="SY">Syrian Arab Republic</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TW") { echo " selected"; } ?> value="TW">Taiwan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TJ") { echo " selected"; } ?> value="TJ">Tajikistan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TZ") { echo " selected"; } ?> value="TZ">Tanzania (United Republic)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TH") { echo " selected"; } ?> value="TH">Thailand</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TL") { echo " selected"; } ?> value="TL">Timor-Leste</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TG") { echo " selected"; } ?> value="TG">Togo</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TK") { echo " selected"; } ?> value="TK">Tokelau</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TO") { echo " selected"; } ?> value="TO">Tonga</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TT") { echo " selected"; } ?> value="TT">Trinidad & Tobago</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TN") { echo " selected"; } ?> value="TN">Tunisia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TR") { echo " selected"; } ?> value="TR">Turkey</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TM") { echo " selected"; } ?> value="TM">Turkmenistan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TC") { echo " selected"; } ?> value="TC">Turks & Caicos Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TV") { echo " selected"; } ?> value="TV">Tuvalu</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UG") { echo " selected"; } ?> value="UG">Uganda</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UA") { echo " selected"; } ?> value="UA">Ukraine</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AE") { echo " selected"; } ?> value="AE">United Arab Emirates</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GB") { echo " selected"; } ?> value="GB">United Kingdom</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "US") { echo " selected"; } ?> value="US">United States</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UM") { echo " selected"; } ?> value="UM">United States Minor Outlying Islands</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UY") { echo " selected"; } ?> value="UY">Uruguay</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UZ") { echo " selected"; } ?> value="UZ">Uzbekistan</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VU") { echo " selected"; } ?> value="VU">Vanuatu</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VE") { echo " selected"; } ?> value="VE">Venezuela</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VN") { echo " selected"; } ?> value="VN">Vietnam</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VG") { echo " selected"; } ?> value="VG">Virgin Islands (British)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VI") { echo " selected"; } ?> value="VI">Virgin Islands (US)</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "WF") { echo " selected"; } ?> value="WF">Wallis & Futuna</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "EH") { echo " selected"; } ?> value="EH">Western Sahara</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "YE") { echo " selected"; } ?> value="YE">Yemen</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ZM") { echo " selected"; } ?> value="ZM">Zambia</option>
+<option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ZW") { echo " selected"; } ?> value="ZW">Zimbabwe</option>
 </select>
 
 </td></tr>
 
-<tr><td bgcolor="#ffffff"><p>city or municipality</p></td><td bgcolor="#ffffff" colspan="2"><input required class="input" type="text" autocomplete="off" name="city" maxlength="100" <?php if (file_exists("data/members/active/$maj_logged_in_username/city.txt")) { echo "value=\""; readfile("data/members/active/$maj_logged_in_username/city.txt");echo "\"";  } ?>></td></tr>
+<tr><td bgcolor="#ffffff"><p>city or municipality</p></td><td bgcolor="#ffffff" colspan="2"><input required class="input" type="text" autocomplete="off" name="city" maxlength="100" <?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/city.txt")) { echo "value=\""; readfile("$maj_data_directory/members/active/$maj_logged_in_username/city.txt");echo "\"";  } ?>></td></tr>
 
-<?php if (file_exists("data/bb.txt") and file_exists("data/bb-sig.txt")) { ?>
+<?php if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/bb-sig.txt")) { ?>
 
-<tr><td bgcolor="#ffffff"><p>signature</p></td><td bgcolor="#ffffff" colspan="2"><textarea class="input" name="sig"><?php if (file_exists("data/members/active/$maj_logged_in_username/sig.txt")) {
+<tr><td bgcolor="#ffffff"><p>signature</p></td><td bgcolor="#ffffff" colspan="2"><textarea class="input" name="sig"><?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/sig.txt")) {
 
-       $get_sig = file_get_contents("data/members/active/$maj_logged_in_username/sig.txt");
+       $get_sig = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/sig.txt");
        $get_sig = str_replace("<b>","[b]",$get_sig);
        $get_sig = str_replace("</b>","[/b]",$get_sig);
        $get_sig = str_replace("<i>","[i]",$get_sig);
@@ -662,7 +662,7 @@ if (file_exists("data/members/active/$maj_logged_in_username/bb-last.txt")) {
 
 }
 
-if (file_exists("data/avatar.txt")) {
+if (file_exists("$maj_data_directory/avatar.txt")) {
 
 ?>
 
@@ -671,13 +671,13 @@ if (file_exists("data/avatar.txt")) {
 
 }
 
-if (file_exists("data/avatar.txt") and (file_exists("images/members/$maj_logged_in_username/avatar.gif") or file_exists("images/members/$maj_logged_in_username/avatar.jpg") or file_exists("images/members/$maj_logged_in_username/avatar.png"))) { ?>
+if (file_exists("$maj_data_directory/avatar.txt") and (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.gif") or file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg") or file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.png"))) { ?>
 <tr><td bgcolor="#ffffff"><p></p></td><td bgcolor="#ffffff" colspan="2"><p><input type="checkbox" name="del_avatar">delete existing avatar</p></td></tr>
-<?php } if (file_exists("data/ml.txt") and !file_exists("data/members/active/$maj_logged_in_username/key.txt")) { ?>
-<tr><td bgcolor="#ffffff"><p></p></td><td bgcolor="#ffffff" colspan="2"><p><input type="checkbox" name="vacation" <?php if (file_exists("data/members/active/$maj_logged_in_username/bb-vacation.txt")) { echo checked; } ?>>temporarily disable mailing list subscription</p></td></tr>
+<?php } if (file_exists("$maj_data_directory/ml.txt") and !file_exists("$maj_data_directory/members/active/$maj_logged_in_username/key.txt")) { ?>
+<tr><td bgcolor="#ffffff"><p></p></td><td bgcolor="#ffffff" colspan="2"><p><input type="checkbox" name="vacation" <?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt")) { echo checked; } ?>>temporarily disable mailing list subscription</p></td></tr>
 <?php } ?>
 
-<?php if (!file_exists("data/members/active/$maj_logged_in_username/bday.txt")) { ?>
+<?php if (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bday.txt")) { ?>
 <tr><td bgcolor="#ffffff"><p>birthdate (YYYYMMDD)</p></td><td bgcolor="#ffffff" colspan="2"><input class="input" type="text" autocomplete="off" name="bday" maxlength="8" value="<?php echo date("Ymd", time() + $maj_offset); ?>"></td></tr>
 <?php } ?>
 
diff --git a/video.php b/video.php
index 53e815e..c28bcab 100644
--- a/video.php
+++ b/video.php
@@ -142,7 +142,7 @@ if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry']) and isset($_REQUEST
        if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == file_get_contents("data/username.txt"))) {
       
                echo "<form method=\"post\"><input type=\"hidden\" name=\"entry\" value=\"$maj_d\"><input type=\"hidden\" name=\"show\" value=\"$maj_s\">";
-               echo "<tr><td colspan=\"2\"><textarea autofocus required class=\"input\" style=\"width: 100%;\" name=\"caption\"></textarea></td></tr>";
+               echo "<tr><td colspan=\"2\"><textarea required class=\"input\" style=\"width: 100%;\" name=\"caption\"></textarea></td></tr>";
                echo "<tr><td colspan=\"2\"><input type=\"submit\" class=\"click\" style=\"width: 100%;\" value=\"click here to update the caption\"></td></tr>";
                echo "</form>";
        }
 
filedropmaj.git-01822e4.tar.bz2
147.95 KB
72 downloads
filedropmaj.git-01822e4.zip
201.96 KB
25 downloads
filedropmaj.git-0291349.tar.bz2
152.85 KB
70 downloads
filedropmaj.git-0291349.zip
211.90 KB
25 downloads
filedropmaj.git-02cb3b7.tar.bz2
151.48 KB
73 downloads
filedropmaj.git-02cb3b7.zip
209.82 KB
25 downloads
filedropmaj.git-0811dd5.tar.bz2
152.90 KB
69 downloads
filedropmaj.git-0811dd5.zip
211.90 KB
23 downloads
filedropmaj.git-083625f.tar.bz2
132.92 KB
68 downloads
filedropmaj.git-083625f.zip
179.59 KB
25 downloads
filedropmaj.git-0885d7b.tar.bz2
92.63 KB
69 downloads
filedropmaj.git-0885d7b.zip
132.34 KB
22 downloads
filedropmaj.git-09c6f33.tar.bz2
151.51 KB
68 downloads
filedropmaj.git-09c6f33.zip
202.12 KB
23 downloads
filedropmaj.git-0b26a85.tar.bz2
151.44 KB
66 downloads
filedropmaj.git-0b26a85.zip
209.75 KB
21 downloads
filedropmaj.git-0b32424.tar.bz2
151.66 KB
67 downloads
filedropmaj.git-0b32424.zip
206.72 KB
22 downloads
filedropmaj.git-0f3ac59.tar.bz2
152.14 KB
66 downloads
filedropmaj.git-0f3ac59.zip
211.45 KB
18 downloads
filedropmaj.git-11d4582.tar.bz2
143.02 KB
64 downloads
filedropmaj.git-11d4582.zip
195.12 KB
17 downloads
filedropmaj.git-17f105a.tar.bz2
137.96 KB
62 downloads
filedropmaj.git-17f105a.zip
193.02 KB
18 downloads
filedropmaj.git-183270b.tar.bz2
137.54 KB
66 downloads
filedropmaj.git-183270b.zip
187.93 KB
18 downloads
filedropmaj.git-197a49d.tar.bz2
152.03 KB
64 downloads
filedropmaj.git-197a49d.zip
211.32 KB
21 downloads
filedropmaj.git-1b9af25.tar.bz2
152.87 KB
62 downloads
filedropmaj.git-1b9af25.zip
211.96 KB
19 downloads
filedropmaj.git-1be2914.tar.bz2
149.30 KB
64 downloads
filedropmaj.git-1be2914.zip
203.09 KB
18 downloads
filedropmaj.git-1bed800.tar.bz2
138.15 KB
60 downloads
filedropmaj.git-1bed800.zip
190.15 KB
22 downloads
filedropmaj.git-1d330de.tar.bz2
151.65 KB
62 downloads
filedropmaj.git-1d330de.zip
210.80 KB
20 downloads
filedropmaj.git-1df190d.tar.bz2
151.72 KB
64 downloads
filedropmaj.git-1df190d.zip
210.85 KB
18 downloads
filedropmaj.git-1ee1167.tar.bz2
151.52 KB
64 downloads
filedropmaj.git-1ee1167.zip
202.16 KB
19 downloads
filedropmaj.git-2057838.tar.bz2
151.76 KB
60 downloads
filedropmaj.git-2057838.zip
202.36 KB
18 downloads
filedropmaj.git-2075213.tar.bz2
155.81 KB
61 downloads
filedropmaj.git-2075213.zip
208.39 KB
18 downloads
filedropmaj.git-211b7b0.tar.bz2
142.53 KB
63 downloads
filedropmaj.git-211b7b0.zip
194.64 KB
19 downloads
filedropmaj.git-2331f5a.tar.bz2
75.55 KB
64 downloads
filedropmaj.git-2331f5a.zip
100.32 KB
21 downloads
filedropmaj.git-25e3c4c.tar.bz2
147.57 KB
62 downloads
filedropmaj.git-25e3c4c.zip
201.46 KB
18 downloads
filedropmaj.git-2622313.tar.bz2
151.47 KB
59 downloads
filedropmaj.git-2622313.zip
206.44 KB
17 downloads
filedropmaj.git-273e4b2.tar.bz2
152.60 KB
60 downloads
filedropmaj.git-273e4b2.zip
203.40 KB
20 downloads
filedropmaj.git-2753e51.tar.bz2
136.37 KB
64 downloads
filedropmaj.git-2753e51.zip
184.34 KB
17 downloads
filedropmaj.git-2c1a589.tar.bz2
155.89 KB
58 downloads
filedropmaj.git-2c1a589.zip
208.69 KB
18 downloads
filedropmaj.git-2c3d544.tar.bz2
151.33 KB
1 download
filedropmaj.git-2c3d544.zip
206.23 KB
19 downloads
filedropmaj.git-2c85f72.tar.bz2
143.23 KB
59 downloads
filedropmaj.git-2c85f72.zip
194.84 KB
16 downloads
filedropmaj.git-2dc622c.tar.bz2
151.76 KB
57 downloads
filedropmaj.git-2dc622c.zip
202.35 KB
19 downloads
filedropmaj.git-2fabf8a.tar.bz2
151.35 KB
61 downloads
filedropmaj.git-2fabf8a.zip
206.24 KB
20 downloads
filedropmaj.git-322736b.tar.bz2
137.81 KB
54 downloads
filedropmaj.git-322736b.zip
190.18 KB
18 downloads
filedropmaj.git-374279c.tar.bz2
137.54 KB
55 downloads
filedropmaj.git-374279c.zip
189.58 KB
17 downloads
filedropmaj.git-37e852d.tar.bz2
151.32 KB
51 downloads
filedropmaj.git-37e852d.zip
206.21 KB
16 downloads
filedropmaj.git-38636de.tar.bz2
147.35 KB
51 downloads
filedropmaj.git-38636de.zip
201.16 KB
74 downloads
filedropmaj.git-3b25d71.tar.bz2
147.88 KB
44 downloads
filedropmaj.git-3b25d71.zip
201.85 KB
18 downloads
filedropmaj.git-3b6df7a.tar.bz2
153.39 KB
42 downloads
filedropmaj.git-3b6df7a.zip
204.55 KB
22 downloads
filedropmaj.git-3bf6bd2.tar.bz2
137.77 KB
47 downloads
filedropmaj.git-3bf6bd2.zip
190.16 KB
19 downloads
filedropmaj.git-3e012ff.tar.bz2
152.83 KB
43 downloads
filedropmaj.git-3e012ff.zip
211.89 KB
21 downloads
filedropmaj.git-4129ab8.tar.bz2
135.86 KB
51 downloads
filedropmaj.git-4129ab8.zip
184.30 KB
19 downloads
filedropmaj.git-414dbb4.tar.bz2
91.09 KB
49 downloads
filedropmaj.git-414dbb4.zip
130.29 KB
19 downloads
filedropmaj.git-43755d0.tar.bz2
150.25 KB
42 downloads
filedropmaj.git-43755d0.zip
204.44 KB
19 downloads
filedropmaj.git-4c20005.tar.bz2
55.59 KB
45 downloads
filedropmaj.git-4c20005.zip
74.20 KB
19 downloads
filedropmaj.git-4ccdbcd.tar.bz2
136.38 KB
47 downloads
filedropmaj.git-4ccdbcd.zip
185.22 KB
21 downloads
filedropmaj.git-4cd1a1c.tar.bz2
155.25 KB
44 downloads
filedropmaj.git-4cd1a1c.zip
207.88 KB
21 downloads
filedropmaj.git-4cf16d1.tar.bz2
76.32 KB
47 downloads
filedropmaj.git-4cf16d1.zip
101.80 KB
17 downloads
filedropmaj.git-4ec45a0.tar.bz2
131.16 KB
44 downloads
filedropmaj.git-4ec45a0.zip
172.66 KB
19 downloads
filedropmaj.git-4f73c22.tar.bz2
134.46 KB
44 downloads
filedropmaj.git-4f73c22.zip
182.45 KB
18 downloads
filedropmaj.git-5457969.tar.bz2
155.21 KB
46 downloads
filedropmaj.git-5457969.zip
207.63 KB
19 downloads
filedropmaj.git-57ee8a1.tar.bz2
145.49 KB
47 downloads
filedropmaj.git-57ee8a1.zip
198.12 KB
71 downloads
filedropmaj.git-592978d.tar.bz2
138.38 KB
45 downloads
filedropmaj.git-592978d.zip
190.58 KB
16 downloads
filedropmaj.git-5935b42.tar.bz2
135.60 KB
43 downloads
filedropmaj.git-5935b42.zip
183.28 KB
20 downloads
filedropmaj.git-5b443b6.tar.bz2
152.00 KB
45 downloads
filedropmaj.git-5b443b6.zip
211.07 KB
18 downloads
filedropmaj.git-5b4a9bf.tar.bz2
155.29 KB
43 downloads
filedropmaj.git-5b4a9bf.zip
207.93 KB
17 downloads
filedropmaj.git-5b6c01d.tar.bz2
147.13 KB
44 downloads
filedropmaj.git-5b6c01d.zip
200.86 KB
21 downloads
filedropmaj.git-5da45f7.tar.bz2
147.27 KB
44 downloads
filedropmaj.git-5da45f7.zip
201.02 KB
18 downloads
filedropmaj.git-5e53618.tar.bz2
75.57 KB
47 downloads
filedropmaj.git-5e53618.zip
100.78 KB
19 downloads
filedropmaj.git-5f8ca35.tar.bz2
136.39 KB
42 downloads
filedropmaj.git-5f8ca35.zip
185.32 KB
18 downloads
filedropmaj.git-61e3d7b.tar.bz2
153.52 KB
42 downloads
filedropmaj.git-61e3d7b.zip
204.73 KB
19 downloads
filedropmaj.git-62a635c.tar.bz2
155.90 KB
46 downloads
filedropmaj.git-62a635c.zip
208.73 KB
19 downloads
filedropmaj.git-6390d34.tar.bz2
138.39 KB
46 downloads
filedropmaj.git-6390d34.zip
190.56 KB
22 downloads
filedropmaj.git-649dfbe.tar.bz2
151.78 KB
45 downloads
filedropmaj.git-649dfbe.zip
210.91 KB
19 downloads
filedropmaj.git-65d6570.tar.bz2
151.63 KB
48 downloads
filedropmaj.git-65d6570.zip
210.80 KB
21 downloads
filedropmaj.git-660433f.tar.bz2
151.67 KB
45 downloads
filedropmaj.git-660433f.zip
206.68 KB
19 downloads
filedropmaj.git-6619ae5.tar.bz2
153.23 KB
1 download
filedropmaj.git-6619ae5.zip
204.28 KB
18 downloads
filedropmaj.git-68e4e3a.tar.bz2
135.13 KB
42 downloads
filedropmaj.git-68e4e3a.zip
182.91 KB
18 downloads
filedropmaj.git-6995297.tar.bz2
144.93 KB
47 downloads
filedropmaj.git-6995297.zip
197.18 KB
17 downloads
filedropmaj.git-69d6fd3.tar.bz2
143.23 KB
43 downloads
filedropmaj.git-69d6fd3.zip
194.89 KB
21 downloads
filedropmaj.git-6aa872a.tar.bz2
142.95 KB
48 downloads
filedropmaj.git-6aa872a.zip
195.11 KB
20 downloads
filedropmaj.git-6bad5c7.tar.bz2
147.04 KB
47 downloads
filedropmaj.git-6bad5c7.zip
200.79 KB
19 downloads
filedropmaj.git-6e96a2d.tar.bz2
152.13 KB
46 downloads
filedropmaj.git-6e96a2d.zip
207.21 KB
72 downloads
filedropmaj.git-73d46de.tar.bz2
138.42 KB
43 downloads
filedropmaj.git-73d46de.zip
190.59 KB
18 downloads
filedropmaj.git-75e0478.tar.bz2
144.54 KB
47 downloads
filedropmaj.git-75e0478.zip
196.70 KB
20 downloads
filedropmaj.git-784fc35.tar.bz2
143.07 KB
47 downloads
filedropmaj.git-784fc35.zip
195.01 KB
18 downloads
filedropmaj.git-7872a83.tar.bz2
138.51 KB
48 downloads
filedropmaj.git-7872a83.zip
190.69 KB
17 downloads
filedropmaj.git-788fb89.tar.bz2
138.30 KB
46 downloads
filedropmaj.git-788fb89.zip
191.26 KB
23 downloads
filedropmaj.git-796d8a3.tar.bz2
138.92 KB
43 downloads
filedropmaj.git-796d8a3.zip
191.24 KB
18 downloads
filedropmaj.git-79a5e8d.tar.bz2
132.43 KB
47 downloads
filedropmaj.git-79a5e8d.zip
176.90 KB
19 downloads
filedropmaj.git-7b3b2e0.tar.bz2
147.24 KB
45 downloads
filedropmaj.git-7b3b2e0.zip
201.05 KB
19 downloads
filedropmaj.git-7e28eed.tar.bz2
138.89 KB
42 downloads
filedropmaj.git-7e28eed.zip
191.24 KB
19 downloads
filedropmaj.git-8279296.tar.bz2
135.56 KB
47 downloads
filedropmaj.git-8279296.zip
183.25 KB
19 downloads
filedropmaj.git-84c17fe.tar.bz2
152.87 KB
47 downloads
filedropmaj.git-84c17fe.zip
211.90 KB
19 downloads
filedropmaj.git-87c5d5f.tar.bz2
135.78 KB
45 downloads
filedropmaj.git-87c5d5f.zip
183.64 KB
17 downloads
filedropmaj.git-8a48901.tar.bz2
147.27 KB
48 downloads
filedropmaj.git-8a48901.zip
201.06 KB
19 downloads
filedropmaj.git-8ad9892.tar.bz2
164.04 KB
44 downloads
filedropmaj.git-8ad9892.zip
224.42 KB
18 downloads
filedropmaj.git-8b4cf2a.tar.bz2
134.06 KB
46 downloads
filedropmaj.git-8b4cf2a.zip
180.78 KB
19 downloads
filedropmaj.git-8b7e38d.tar.bz2
138.04 KB
50 downloads
filedropmaj.git-8b7e38d.zip
190.39 KB
75 downloads
filedropmaj.git-8df6e40.tar.bz2
143.11 KB
47 downloads
filedropmaj.git-8df6e40.zip
194.66 KB
23 downloads
filedropmaj.git-8e80c84.tar.bz2
138.18 KB
1 download
filedropmaj.git-8e80c84.zip
190.30 KB
19 downloads
filedropmaj.git-8ec0fba.tar.bz2
138.37 KB
48 downloads
filedropmaj.git-8ec0fba.zip
191.39 KB
18 downloads
filedropmaj.git-8f7abf6.tar.bz2
153.36 KB
47 downloads
filedropmaj.git-8f7abf6.zip
211.80 KB
18 downloads
filedropmaj.git-923f11a.tar.bz2
138.14 KB
44 downloads
filedropmaj.git-923f11a.zip
191.03 KB
20 downloads
filedropmaj.git-955e82e.tar.bz2
42.71 KB
44 downloads
filedropmaj.git-955e82e.zip
59.77 KB
19 downloads
filedropmaj.git-95add4a.tar.bz2
151.23 KB
49 downloads
filedropmaj.git-95add4a.zip
205.91 KB
19 downloads
filedropmaj.git-96fe0ba.tar.bz2
137.68 KB
41 downloads
filedropmaj.git-96fe0ba.zip
190.34 KB
18 downloads
filedropmaj.git-99a90ce.tar.bz2
137.82 KB
48 downloads
filedropmaj.git-99a90ce.zip
191.20 KB
21 downloads
filedropmaj.git-9a69bb9.tar.bz2
143.19 KB
48 downloads
filedropmaj.git-9a69bb9.zip
194.70 KB
20 downloads
filedropmaj.git-9b6538e.tar.bz2
151.45 KB
45 downloads
filedropmaj.git-9b6538e.zip
202.15 KB
16 downloads
filedropmaj.git-9c4292d.tar.bz2
132.06 KB
46 downloads
filedropmaj.git-9c4292d.zip
176.93 KB
18 downloads
filedropmaj.git-9c78d40.tar.bz2
137.70 KB
45 downloads
filedropmaj.git-9c78d40.zip
190.49 KB
20 downloads
filedropmaj.git-9f1363f.tar.bz2
43.12 KB
49 downloads
filedropmaj.git-9f1363f.zip
60.31 KB
18 downloads
filedropmaj.git-a16c3eb.tar.bz2
90.22 KB
43 downloads
filedropmaj.git-a16c3eb.zip
128.62 KB
18 downloads
filedropmaj.git-a3aa72d.tar.bz2
153.00 KB
46 downloads
filedropmaj.git-a3aa72d.zip
203.86 KB
21 downloads
filedropmaj.git-a6886e4.tar.bz2
144.69 KB
46 downloads
filedropmaj.git-a6886e4.zip
196.95 KB
18 downloads
filedropmaj.git-a8669dc.tar.bz2
135.60 KB
44 downloads
filedropmaj.git-a8669dc.zip
183.34 KB
19 downloads
filedropmaj.git-a9477f1.tar.bz2
135.59 KB
46 downloads
filedropmaj.git-a9477f1.zip
183.45 KB
19 downloads
filedropmaj.git-aa285db.tar.bz2
151.73 KB
47 downloads
filedropmaj.git-aa285db.zip
210.85 KB
18 downloads
filedropmaj.git-aa6ae87.tar.bz2
135.44 KB
45 downloads
filedropmaj.git-aa6ae87.zip
183.88 KB
19 downloads
filedropmaj.git-ab6bc22.tar.bz2
151.71 KB
42 downloads
filedropmaj.git-ab6bc22.zip
210.84 KB
20 downloads
filedropmaj.git-adef726.tar.bz2
153.48 KB
45 downloads
filedropmaj.git-adef726.zip
212.32 KB
19 downloads
filedropmaj.git-afe5877.tar.bz2
144.73 KB
41 downloads
filedropmaj.git-afe5877.zip
197.01 KB
18 downloads
filedropmaj.git-b2d9f8e.tar.bz2
133.22 KB
44 downloads
filedropmaj.git-b2d9f8e.zip
179.27 KB
18 downloads
filedropmaj.git-b41f320.tar.bz2
151.56 KB
42 downloads
filedropmaj.git-b41f320.zip
209.85 KB
23 downloads
filedropmaj.git-b4432ce.tar.bz2
152.96 KB
43 downloads
filedropmaj.git-b4432ce.zip
203.86 KB
19 downloads
filedropmaj.git-b67b08f.tar.bz2
151.27 KB
45 downloads
filedropmaj.git-b67b08f.zip
206.15 KB
21 downloads
filedropmaj.git-b899831.tar.bz2
143.12 KB
44 downloads
filedropmaj.git-b899831.zip
194.60 KB
19 downloads
filedropmaj.git-b8b49c1.tar.bz2
132.59 KB
42 downloads
filedropmaj.git-b8b49c1.zip
178.90 KB
17 downloads
filedropmaj.git-b9c5bcf.tar.bz2
155.92 KB
43 downloads
filedropmaj.git-b9c5bcf.zip
208.70 KB
17 downloads
filedropmaj.git-bbddb1f.tar.bz2
151.63 KB
42 downloads
filedropmaj.git-bbddb1f.zip
209.92 KB
21 downloads
filedropmaj.git-bcaa744.tar.bz2
146.98 KB
45 downloads
filedropmaj.git-bcaa744.zip
200.79 KB
20 downloads
filedropmaj.git-c1ff9dc.tar.bz2
138.39 KB
46 downloads
filedropmaj.git-c1ff9dc.zip
191.43 KB
102 downloads
filedropmaj.git-c20c4b0.tar.bz2
151.64 KB
44 downloads
filedropmaj.git-c20c4b0.zip
210.79 KB
18 downloads
filedropmaj.git-c37f3f7.tar.bz2
145.45 KB
58 downloads
filedropmaj.git-c37f3f7.zip
198.11 KB
27 downloads
filedropmaj.git-c532394.tar.bz2
146.39 KB
46 downloads
filedropmaj.git-c532394.zip
199.91 KB
20 downloads
filedropmaj.git-c6317a4.tar.bz2
152.01 KB
45 downloads
filedropmaj.git-c6317a4.zip
207.08 KB
18 downloads
filedropmaj.git-c748176.tar.bz2
89.44 KB
43 downloads
filedropmaj.git-c748176.zip
126.35 KB
19 downloads
filedropmaj.git-c9ed81f.tar.bz2
135.56 KB
43 downloads
filedropmaj.git-c9ed81f.zip
183.28 KB
21 downloads
filedropmaj.git-c9f9b80.tar.bz2
138.50 KB
42 downloads
filedropmaj.git-c9f9b80.zip
190.66 KB
20 downloads
filedropmaj.git-ca65b73.tar.bz2
152.69 KB
44 downloads
filedropmaj.git-ca65b73.zip
207.87 KB
20 downloads
filedropmaj.git-cd80b77.tar.bz2
153.12 KB
44 downloads
filedropmaj.git-cd80b77.zip
212.01 KB
17 downloads
filedropmaj.git-cffbb2a.tar.bz2
138.22 KB
42 downloads
filedropmaj.git-cffbb2a.zip
190.28 KB
19 downloads
filedropmaj.git-d061ad7.tar.bz2
55.78 KB
57 downloads
filedropmaj.git-d061ad7.zip
74.39 KB
20 downloads
filedropmaj.git-d0af4d6.tar.bz2
57.28 KB
44 downloads
filedropmaj.git-d0af4d6.zip
78.56 KB
20 downloads
filedropmaj.git-d1caa0a.tar.bz2
144.57 KB
46 downloads
filedropmaj.git-d1caa0a.zip
196.63 KB
19 downloads
filedropmaj.git-d5679b5.tar.bz2
152.37 KB
43 downloads
filedropmaj.git-d5679b5.zip
207.52 KB
20 downloads
filedropmaj.git-d72f459.tar.bz2
147.90 KB
45 downloads
filedropmaj.git-d72f459.zip
201.92 KB
17 downloads
filedropmaj.git-d958c91.tar.bz2
144.67 KB
46 downloads
filedropmaj.git-d958c91.zip
196.88 KB
22 downloads
filedropmaj.git-d96784f.tar.bz2
135.58 KB
43 downloads
filedropmaj.git-d96784f.zip
183.46 KB
17 downloads
filedropmaj.git-da4b73f.tar.bz2
152.62 KB
42 downloads
filedropmaj.git-da4b73f.zip
203.48 KB
18 downloads
filedropmaj.git-dd24240.tar.bz2
138.27 KB
42 downloads
filedropmaj.git-dd24240.zip
190.45 KB
77 downloads
filedropmaj.git-e11e772.tar.bz2
152.09 KB
41 downloads
filedropmaj.git-e11e772.zip
211.33 KB
18 downloads
filedropmaj.git-e61478e.tar.bz2
135.95 KB
46 downloads
filedropmaj.git-e61478e.zip
183.91 KB
19 downloads
filedropmaj.git-e7a2547.tar.bz2
133.80 KB
41 downloads
filedropmaj.git-e7a2547.zip
180.05 KB
21 downloads
filedropmaj.git-e8a3b95.tar.bz2
138.15 KB
46 downloads
filedropmaj.git-e8a3b95.zip
191.04 KB
17 downloads
filedropmaj.git-eac86d5.tar.bz2
155.65 KB
42 downloads
filedropmaj.git-eac86d5.zip
208.28 KB
17 downloads
filedropmaj.git-ed83bf9.tar.bz2
135.16 KB
43 downloads
filedropmaj.git-ed83bf9.zip
182.91 KB
20 downloads
filedropmaj.git-ee50d40.tar.bz2
135.59 KB
44 downloads
filedropmaj.git-ee50d40.zip
183.48 KB
20 downloads
filedropmaj.git-efdb4df.tar.bz2
155.87 KB
45 downloads
filedropmaj.git-efdb4df.zip
208.72 KB
19 downloads
filedropmaj.git-f1554f8.tar.bz2
151.30 KB
46 downloads
filedropmaj.git-f1554f8.zip
206.22 KB
21 downloads
filedropmaj.git-f72a07b.tar.bz2
153.44 KB
46 downloads
filedropmaj.git-f72a07b.zip
212.11 KB
21 downloads
filedropmaj.git-f7ea5a1.tar.bz2
147.46 KB
45 downloads
filedropmaj.git-f7ea5a1.zip
201.32 KB
21 downloads
filedropmaj.git-f8a7353.tar.bz2
138.49 KB
44 downloads
filedropmaj.git-f8a7353.zip
190.66 KB
22 downloads
filedropmaj.git-fb84a8d.tar.bz2
137.61 KB
50 downloads
filedropmaj.git-fb84a8d.zip
190.70 KB
23 downloads
filedropmaj.git-fdcf5d3.tar.bz2
152.34 KB
48 downloads
filedropmaj.git-fdcf5d3.zip
207.53 KB
22 downloads
filedropmaj.git-feca42d.tar.bz2
132.90 KB
48 downloads
filedropmaj.git-feca42d.zip
179.44 KB
25 downloads