<SCRIPT LANGUAGE=\"JavaScript\">
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval(\"page\" + id + \" = window.open(URL, '\" + id + \"', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=500,height=400');\");
}
// End -->
</SCRIPT>
<a href="javascript:popUp('FAQ.php?what=CC')">Country Codes</a>
<?
echo "<html><head><title>Explanation of Country Codes</title></head>";
require_once("functions.inc.php");
switch ($_GET['what']) {
case CC:
echo "<table cellpadding='2'>";
foreach ($func_country_array as $key => $value)
{
if ($key == "BLANK")
{
continue;
}
if ($key == "ALL")
{
echo "<tr>
<td>";
echo "ALL";
echo "</td>
<td>";nbsp(7);echo "</td><td>";
echo "All Countries
</td>
</tr>
";
continue;
}
echo "<tr>
<td>";
echo $key;
echo "</td>
<td>";nbsp(7);echo "</td><td>";
echo ucwords(strtolower($func_country_array[$key]))."
</td>
</tr>
";
}
break;
default:
die("ARG! You didn't say the password!");
break;
}
echo "</html>";
?>

