Skip to content
Snippets Groups Projects
Commit 72e8fa57 authored by Jeroen's avatar Jeroen
Browse files

OK, this is the third time I'm trying to get my theme submitted. It should work now.

It's ready for public release and can be added the the drupal CVS releases. First however, make sure you check htpp://jeroen.drop.org first and let me know if you find any more bugs. I still have to change a bit one a .gif before my footer is correct but that won't be a problem.
And thanks to Dries for solving some theme-problems.

Jeroen
parent de2e3939
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -32,20 +32,36 @@ function header() { ...@@ -32,20 +32,36 @@ function header() {
</HEAD> </HEAD>
<BODY TEXT="#202020" BGCOLOR="#FEFEFE" BACKGROUND="themes/jeroen/images/background.gif" ALINK="#000000" LINK="#000000" VLINK="#000000"> <BODY TEXT="#202020" BGCOLOR="#FEFEFE" BACKGROUND="themes/jeroen/images/background.gif" ALINK="#000000" LINK="#000000" VLINK="#000000">
<TABLE WIDTH="770" ALIGN="left" BORDER="0" CELLPADDING="0" CELLSPACING="6"> <TABLE ALIGN="left" BORDER="0" CELLPADDING="0" CELLSPACING="6">
<TR> <TR>
<TD COLSPAN="2"> <TD COLSPAN="2">
<? if (rand(0,150) == 75) $img = "logo2.gif"; else $img = "logo.gif"; ?> <? if (rand(0,150) == 75) $img = "logo2.gif"; else $img = "logo.gif"; ?>
<IMG SRC="themes/jeroen/images/<? echo $img; ?>" ALT="drop.org logo"><BR><BR> <IMG SRC="themes/jeroen/images/<? echo $img; ?>" ALT="drop.org logo"><BR><BR>
</TD> </TD>
<TD>
<?
$this->box("Drop where?", "<TR>
<TD ALIGN=\"left\" VALIGN=\"top\">
<A HREF=\"index.php\">home</A><BR>
<A HREF=\"module.php?mod=faq\">faq</A><BR>
<A HREF=\"search.php\">search</A>
</TD>
<TD ALIGN=\"right\" VALIGN=\"top\">
<A HREF=\"module.php?mod=diary\">diary</A><BR>
<A HREF=\"submit.php\">submit news</A>
<A HREF=\"account.php\">account</A>
</TD>
</TR>");
?>
</TD>
</TR> </TR>
<TR> <TR>
<TD WIDTH="160" VALIGN="top" ALIGN="right"> <TD VALIGN="top" ALIGN="right">
<? <?
theme_blocks("all", $this); theme_blocks("all", $this);
?> ?>
</TD> </TD>
<TD WIDTH="430" VALIGN="top" ALIGN="left"> <TD VALIGN="top" ALIGN="left">
<? <?
} }
...@@ -56,61 +72,45 @@ function abstract($story) { ...@@ -56,61 +72,45 @@ function abstract($story) {
<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0"> <TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR> <TR>
<TD ALIGN="left" VALIGN="bottom" HEIGHT="20"> <TD ALIGN="left" VALIGN="bottom" HEIGHT="20" BACKGROUND="themes/jeroen/images/<? echo (rand(0, 1) ? "news1.gif" : "news3.gif"); ?>" WIDTH="20" HEIGHT="20" NOWRAP>&nbsp;</TD>
<? if (rand(0,1) == 0) $img = "news1.gif"; else $img = "news3.gif"; ?> <TD COLSPAN="2" ALIGN="center" VALIGN="top" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsmiddle.gif" NOWRAP>
<IMG SRC="themes/jeroen/images/<? echo $img; ?>" WIDTH="20" HEIGHT="20" ALT="">
</TD>
<TD COLSPAN="3" ALIGN="center" VALIGN="center" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsmiddle.gif">
<B><? echo "". check_output($story->subject) .""; ?></B> <B><? echo "". check_output($story->subject) .""; ?></B>
</TD> </TD>
<TD ALIGN="right" VALIGN="bottom" HEIGHT="20"> <? if (rand(0,1) == 0) $img = "news2.gif"; else $img = "news4.gif"; if (rand(0,100) == 50) $img = "news5.gif"; ?>
<? if (rand(0,1) == 0) $img = "news2.gif"; else $img = "news4.gif"; if (rand(0,100) == 50) $img = "news5.gif"; ?> <TD ALIGN="right" VALIGN="bottom" BACKGROUND="themes/jeroen/images/<? echo $img; ?>" WIDTH="20" HEIGHT="20" NOWRAP>&nbsp;</TD>
<IMG SRC="themes/jeroen/images/<? echo $img; ?>" WIDTH="20" HEIGHT="20" ALT="">
</TD>
</TR> </TR>
<TR> <TR>
<TD ALIGN="left" VALIGN="bottom" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsboxleft.gif"> <TD ALIGN="left" VALIGN="bottom" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsboxleft.gif">&nbsp;</TD>
&nbsp; <TD ALIGN="left" BACKGROUND="themes/jeroen/images/menutitle.gif" NOWRAP>
</TD>
<TD COLSPAN="2" ALIGN="left" WIDTH="100%" HEIGHT="20" BACKGROUND="themes/jeroen/images/menutitle.gif">
&nbsp; &nbsp;
<FONT COLOR="<? echo $this->fgc2; ?>"> <FONT COLOR="<? echo $this->fgc2; ?>">
<? <?
switch (rand(0,12)) { switch (rand(0,13)) {
case 0: $how = "Yelled at us"; break; case 1: $how = "Whispered"; break; case 0: $how = "Yelled at us"; break; case 1: $how = "Whispered"; break;
case 2: $how = "Reported"; break; case 3: $how = "Posted"; break; case 2: $how = "Reported"; break; case 3: $how = "Posted"; break;
case 4: $how = "Beamed through"; break; case 5: $how = "Faxed"; break; case 4: $how = "Beamed through"; break; case 5: $how = "Faxed"; break;
case 6: $how = "Tossed at us"; break; case 7: $how = "Morsed"; break; case 6: $how = "Tossed at us"; break; case 7: $how = "Morsed"; break;
case 8: $how = "Flagged"; break; case 9: $how = "Written to us"; break; case 8: $how = "Flagged"; break; case 9: $how = "Written to us"; break;
case 10: $how = "Made up"; break; case 11: $how = "Uploaded"; break; case 10: $how = "Made up"; break; case 11: $how = "Uploaded"; break;
default: $how = "Sneaked through"; case 12: $how = "Forged"; break;
} default: $how = "Sneaked through";
if ($story->userid) { }
print "<FONT SIZE=\"-1\">$how by " . format_username($story->userid) . " on $timestamp</FONT>;
print "<FONT SIZE=\"-1\">$how by " . format_username($story->userid) . " on $timestamp</FONT>
</TD> </TD>
<TD ALIGN=\"right\" BGCOLOR=\"#6C6C6C\" BACKGROUND=\"themes/jeroen/images/menutitle.gif\"> <TD ALIGN=\"right\" BGCOLOR=\"#6C6C6C\" BACKGROUND=\"themes/jeroen/images/menutitle.gif\">
<B><A HREF=\"search.php?category=$story->category\"><FONT COLOR=\"<? $this->fgc3; ?>\">$story->category</FONT></A></B>&nbsp;"; <B><A HREF=\"search.php?category=". urlencode($story->category) ."\"><FONT COLOR=\"<? $this->fgc3; ?>\">$story->category</FONT></A></B>&nbsp;";
}
else {
print "<FONT SIZE=\"-1\">Reported to us by $anonymous on $timestamp"; ?><? print "</FONT>
</TD>
<TD ALIGN=\"right\" WIDTH=\"65\"><A HREF=\"search.php?category=$story->category\">
<FONT COLOR=\"<? $this->fgc3; ?>\">$story->category</FONT></A>";
}
?> ?>
</FONT> </FONT>
</TD> </TD>
<TD ALIGN="right" VALIGN="bottom" WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsboxright.gif"> <TD ALIGN="right" VALIGN="bottom" BACKGROUND="themes/jeroen/images/newsboxright.gif" NOWRAP>&nbsp;</TD>
&nbsp;
</TD>
</TR> </TR>
<TR> <TR>
<TD ALIGN="left" BACKGROUND="themes/jeroen/images/newsboxleft.gif" WIDTH="20"> <TD ALIGN="left" BACKGROUND="themes/jeroen/images/newsboxleft.gif" WIDTH="20">
&nbsp; &nbsp;
</TD> </TD>
<TD COLSPAN="3" ALIGN="center" VALIGN="top" WIDTH="100%" BGCOLOR="#E7E7E7" BACKGROUND="themes/jeroen/images/sketch.gif"> <TD COLSPAN="2" ALIGN="center" VALIGN="top" WIDTH="100%" BGCOLOR="#E7E7E7" BACKGROUND="themes/jeroen/images/sketch.gif">
<TABLE WIDTH="100%"> <TABLE WIDTH="100%">
<TR> <TR>
<TD> <TD>
...@@ -137,7 +137,7 @@ function abstract($story) { ...@@ -137,7 +137,7 @@ function abstract($story) {
</TR> </TR>
<TR> <TR>
<TD ALIGN="left" VALIGN="top" WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsboxbottomleft.gif">&nbsp;</TD> <TD ALIGN="left" VALIGN="top" WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsboxbottomleft.gif">&nbsp;</TD>
<TD WIDTH="100%" COLSPAN="3" ALIGN="center" HEIGHT="20" VALIGN="top" BACKGROUND="themes/jeroen/images/newsboxbottom.gif">&nbsp;</TD> <TD WIDTH="100%" COLSPAN="2" ALIGN="center" HEIGHT="20" VALIGN="top" BACKGROUND="themes/jeroen/images/newsboxbottom.gif">&nbsp;</TD>
<TD ALIGN="right" VALIGN="top" WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsboxbottomright.gif">&nbsp;</TD> <TD ALIGN="right" VALIGN="top" WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsboxbottomright.gif">&nbsp;</TD>
</TR> </TR>
</TABLE> </TABLE>
...@@ -156,7 +156,7 @@ function article($story, $reply) { ...@@ -156,7 +156,7 @@ function article($story, $reply) {
<IMG SRC="themes/jeroen/images/<? echo $img; ?>" WIDTH="20" HEIGHT="20" ALT=""> <IMG SRC="themes/jeroen/images/<? echo $img; ?>" WIDTH="20" HEIGHT="20" ALT="">
</TD> </TD>
<TD colspan="3" ALIGN="center" VALIGN="center" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsmiddle.gif"> <TD colspan="3" ALIGN="center" VALIGN="center" HEIGHT="20" BACKGROUND="themes/jeroen/images/newsmiddle.gif">
<IMG SRC="themes/jeroen/images/newsmiddle.gif" width="1" height="1" alt=""><B><? echo $story->subject; ?></B> <IMG SRC="themes/jeroen/images/newsmiddle.gif" width="1" height="1" alt=""><B><? echo check_output($story->subject); ?></B>
</TD> </TD>
<TD ALIGN="left" VALIGN="bottom" WIDTH="20" HEIGHT="20"> <TD ALIGN="left" VALIGN="bottom" WIDTH="20" HEIGHT="20">
<? if (rand(0,1) == 0) $img = "news2.gif"; else $img = "news4.gif"; ?> <? if (rand(0,1) == 0) $img = "news2.gif"; else $img = "news4.gif"; ?>
...@@ -171,18 +171,20 @@ function article($story, $reply) { ...@@ -171,18 +171,20 @@ function article($story, $reply) {
&nbsp; &nbsp;
<FONT COLOR="<? echo $this->fgc2; ?>"> <FONT COLOR="<? echo $this->fgc2; ?>">
<? <?
switch (rand(0,12)) { switch (rand(0,13)) {
case 0: $how = "Yelled at us"; break; case 1: $how = "Whispered"; break; case 0: $how = "Yelled at us"; break; case 1: $how = "Whispered"; break;
case 2: $how = "Reported"; break; case 3: $how = "Posted"; break; case 2: $how = "Reported"; break; case 3: $how = "Posted"; break;
case 4: $how = "Beamed through"; break; case 5: $how = "Faxed"; break; case 4: $how = "Beamed through"; break; case 5: $how = "Faxed"; break;
case 6: $how = "Tossed at us"; break; case 7: $how = "Morsed"; break; case 6: $how = "Tossed at us"; break; case 7: $how = "Morsed"; break;
case 8: $how = "Flagged"; break; case 9: $how = "Written to us"; break; case 8: $how = "Flagged"; break; case 9: $how = "Written to us"; break;
case 10: $how = "Made up"; break; case 11: $how = "Uploaded"; break; case 10: $how = "Made up"; break; case 11: $how = "Uploaded"; break;
default: $how = "Sneaked through"; case 12: $how = "Forged"; break;
default: $how = "Sneaked through";
} }
if ($story->userid) { if ($story->userid) {
print "<FONT SIZE=\"-1\">$how by <A HREF=\"account.php?op=userinfo&uname=$story->userid\">$story->userid</A> on $story->timestamp"; ?><? print "</FONT> print "<FONT SIZE=\"-1\">$how by <A HREF=\"account.php?op=userinfo&uname=$story->userid\">$story->userid</A> on $timestamp"; ?><? print "</FONT>
</TD> </TD>
<TD ALIGN=\"right\" WIDTH=\"80\" BGOLOR=\"6C6C6C\" BACKGROUND=\"themes/jeroen/images/menutitle.gif\"> <TD ALIGN=\"right\" WIDTH=\"80\" BGOLOR=\"6C6C6C\" BACKGROUND=\"themes/jeroen/images/menutitle.gif\">
<B><A HREF=\"search.php?category=$story->category\"><FONT COLOR=\"<? $this->fgc3; ?>\">$story->category</FONT></A></B>&nbsp;"; <B><A HREF=\"search.php?category=$story->category\"><FONT COLOR=\"<? $this->fgc3; ?>\">$story->category</FONT></A></B>&nbsp;";
...@@ -191,8 +193,9 @@ function article($story, $reply) { ...@@ -191,8 +193,9 @@ function article($story, $reply) {
print "<FONT SIZE=\"-1\">Reported to us by $anonymous on $story->timestamp"; ?><? print "</FONT> print "<FONT SIZE=\"-1\">Reported to us by $anonymous on $story->timestamp"; ?><? print "</FONT>
</TD> </TD>
<TD ALIGN=\"center\" WIDTH=\"80\" BGOLOR=\"6C6C6C\" BACKGROUND=\"themes/jeroen/images/menutitle.gif\"> <TD ALIGN=\"center\" WIDTH=\"80\" BGOLOR=\"6C6C6C\" BACKGROUND=\"themes/jeroen/images/menutitle.gif\">
<A HREF=\"search.php?category=$category\"><FONT COLOR=\"<? $this->fgcolor3; ?>\">$story->category</FONT></A>"; <A HREF=\"search.php?category=$category\"><FONT COLOR=\"<? $this->fgc3; ?>\">$story->category</FONT></A>";
} }
?> ?>
</FONT> </FONT>
</TD> </TD>
...@@ -210,13 +213,14 @@ function article($story, $reply) { ...@@ -210,13 +213,14 @@ function article($story, $reply) {
<TD> <TD>
<? <?
if ($story->updates) { if ($story->updates) {
echo "<P>$story->abstract</P><P><FONT COLOR=\"$this->hlcolor1\">Editor's note by <A HREF=\"account.php?op=userinfo&uname=$story->editor\">$story->editor</A>:</FONT>$story->updates</P>"; echo "<P>check_output($story->abstract, 1)</P><P><FONT COLOR=\"$this->hlc1\">Editor's note by <A HREF=\"account.php?op=userinfo&uname=$story->editor\">$story->editor</A>:</FONT>$story->updates</P>";
} }
else { else {
echo $story->abstract; echo check_output($story->abstract, 1);
} }
if ($story->article) if ($story->article)
echo "<P>". check_output($story->article) ."</P>"; echo "<P>". check_output($story->article, 1) ."</P>";
?> ?>
</TD> </TD>
</TR> </TR>
...@@ -241,7 +245,7 @@ function article($story, $reply) { ...@@ -241,7 +245,7 @@ function article($story, $reply) {
<? <?
} }
function control() { function controls() {
print comment_controls(); print comment_controls();
} }
...@@ -304,43 +308,37 @@ function box($subject, $content, $options = "") { ...@@ -304,43 +308,37 @@ function box($subject, $content, $options = "") {
?> ?>
<TABLE WIDTH="100%" ALIGN="center" CELLPADDING="0" CELLSPACING="0" BORDER="0"> <TABLE WIDTH="100%" ALIGN="center" CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR> <TR>
<TD HEIGHT="20" WIDTH="20"><IMG SRC="themes/jeroen/images/boxtopleft.gif"></TD> <TD BACKGROUND="themes/jeroen/images/boxtopleft.gif" WIDTH="20" HEIGHT="20" NOWRAP>&nbsp;</TD>
<TD HEIGHT="20" WIDTH="<? echo $width; ?>" BACKGROUND="themes/jeroen/images/boxtop.gif">&nbsp;</TD> <TD WIDTH="<? echo $width; ?>" BACKGROUND="themes/jeroen/images/boxtop.gif">&nbsp;</TD>
<TD HEIGHT="20" WIDTH="20" BACKGROUND="themes/jeroen/images/boxtopmiddle.gif">&nbsp;</TD> <TD BACKGROUND="themes/jeroen/images/boxtopmiddle.gif">&nbsp;</TD>
<TD HEIGHT="20" BACKGROUND="themes/jeroen/images/boxtop.gif">&nbsp;</TD> <TD BACKGROUND="themes/jeroen/images/boxtop.gif">&nbsp;</TD>
<TD HEIGHT="20" WIDTH="20" BACKGROUND="themes/jeroen/images/boxtopright.gif">&nbsp;</TD> <TD BACKGROUND="themes/jeroen/images/boxtopright.gif" WIDTH="20" NOWRAP>&nbsp;</TD>
</TR> </TR>
<TR> <TR>
<TD WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/<? echo $img2;?>">&nbsp;</TD> <TD BACKGROUND="themes/jeroen/images/<? echo $img2; ?>" HEIGHT="20">&nbsp;</TD>
<TD COLSPAN="3" BGCOLOR="#6C6C6C" HEIGHT="20" BACKGROUND="themes/jeroen/images/menutitle.gif"> <TD ALIGN="center" COLSPAN="3" BACKGROUND="themes/jeroen/images/menutitle.gif" NOWRAP>
<FONT COLOR="<? echo $this->fgc2; ?>"><? echo $subject; ?></FONT> <FONT COLOR="<? echo $this->fgc2; ?>"><? echo $subject; ?></FONT>
</TD> </TD>
<TD WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/boxtoprightside.gif">&nbsp;</TD> <TD BACKGROUND="themes/jeroen/images/boxtoprightside.gif">&nbsp;</TD>
</TR> </TR>
<TR> <TR>
<TD BACKGROUND="themes/jeroen/images/boxleft.gif" WIDTH="20">&nbsp;</TD> <TD BACKGROUND="themes/jeroen/images/boxleft.gif">&nbsp;</TD>
<TD COLSPAN="3" WIDTH="100%" BGCOLOR="#E7E7E7" BACKGROUND="themes/jeroen/images/sketch.gif"> <TD COLSPAN="3" BGCOLOR="#E7E7E7" ALIGN="center" BACKGROUND="themes/jeroen/images/sketch.gif">
<TABLE WIDTH="100%"> <TABLE>
<TR> <TR>
<TD> <TD>
<? echo $content; ?> <? echo $content; ?>
</TD> </TD>
</TR> </TR>
</TABLE> </TABLE>
</TD> </TD>
<TD BACKGROUND="themes/jeroen/images/boxright.gif" WIDTH="20">&nbsp;</TD> <TD BACKGROUND="themes/jeroen/images/boxright.gif">&nbsp;</TD>
</TR> </TR>
<TR> <TR>
<TD WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/boxbottomleft.gif"> <TD BACKGROUND="themes/jeroen/images/boxbottomleft.gif" HEIGHT="20">&nbsp;</TD>
&nbsp; <TD COLSPAN="3" BACKGROUND="themes/jeroen/images/boxbottom.gif">&nbsp;</TD>
</TD> <TD BACKGROUND="themes/jeroen/images/<? echo $img; ?>">&nbsp;</TD>
<TD COLSPAN="3" ALIGN="center" HEIGHT="20" VALIGN="top" BACKGROUND="themes/jeroen/images/boxbottom.gif"> </TR>
&nbsp;
</TD>
<TD ALIGN="right" VALIGN="top" WIDTH="20" HEIGHT="20">
<IMG SRC="themes/jeroen/images/<? echo $img; ?>" ALT="">
</TD>
</TR>
</TABLE> </TABLE>
<BR> <BR>
...@@ -351,26 +349,30 @@ function footer() { ...@@ -351,26 +349,30 @@ function footer() {
?> ?>
</TD> </TD>
<TD WIDTH="180" VALIGN="top" ALIGN="right"> <TD VALIGN="top" ALIGN="right">
<? <?
global $PHP_SELF; global $PHP_SELF;
$this->box("Drop where?", "<TD ALIGN=\"left\" VALIGN=\"top\"><A HREF=\"index.php\">home</A><BR><A HREF=\"faq.php\">faq</A><BR><A HREF=\"search.php\">search</A></TD><TD ALIGN=\"right\" VALIGN=\"top\"><A HREF=\"submit.php\">submit news</A><BR><A HREF=\"account.php\">your account</A></TD>");
theme_account($this); theme_account($this);
?> ?>
</TD> </TD>
</TR> </TR>
<TR> <TR>
<TD WIDTH="160 ALIGN="right" VALIGN="bottom" HEIGHT="20"> <TD></TD>
<IMG SRC="themes/jeroen/images/footerleft.gif" WIDTH="20" HEIGHT="20" ALT=""> <TD>
</TD> <TABLE CELLSPACING="0" CELLPADDING="0">
<TD WIDTH="100%" BACKGROUND="themes/jeroen/images/footer.gif" ALIGN="center" VALIGN="center" HEIGHT="20"> <TR>
<FONT COLOR="<? echo $this->hlc2; ?>" SIZE="2">[ <A HREF="">home</A> | <A HREF="faq.php">faq</A> | <A HREF="search.php">search</A> | <A HREF="submit.php">submit news</A> | <A HREF="account.php">your account</A> ] </FONT> <TD WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/footerleft.gif" NOWRAP>&nbsp;</TD>
</TD> <TD WIDTH="100%" BACKGROUND="themes/jeroen/images/footer.gif" ALIGN="center" VALIGN="middle">
<TD WIDTH="160" ALIGN="left" VALIGN="bottom" HEIGHT="20"> <FONT COLOR="<? echo $this->hlc2; ?>" SIZE="2">[ <A HREF="">Home</A> | <A HREF="module.php?mod=faq">Faq</A> | <A HREF="search.php">Search</A> | <A HREF="module.php?mod=diary">Diary</A>| <A HREF="submit.php">Submit news</A> | <A HREF="account.php">Account</A> ] </FONT>
<IMG SRC="themes/jeroen/images/footerright.gif" WIDTH="20" HEIGHT="20" ALT=""> </TD>
<TD WIDTH="20" BACKGROUND="themes/jeroen/images/footerright.gif" NOWRAP>&nbsp;</TD>
</TR>
</TABLE>
</TD> </TD>
<TD></TD>
</TR> </TR>
</TABLE> </TABLE>
</BODY> </BODY>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment