Author |
Topic |
DJ5A
Junior Member
163 Posts |
Posted - 29 October 2002 : 11:29:48
|
Hello Everybody:
Could someone Please give a little more Info & Detail on How & Where to place this code with Snitz Ver 3.4.02 I'm having a hard time trying to figure out where to Place this Code Exactly. Also it appears I need to change the Name of Some of the include Files as Posted by alex042.
Thank You for Your Time! DJ5A |
Thank You for Your Time!!!!! DJ5A |
|
|
Carefree
Advanced Member
Philippines
4207 Posts |
Posted - 29 October 2002 : 13:19:56
|
In pop_flagmod.asp, the following includes should be at the top:
[code] <!--#INCLUDE file="inc_func_common.asp" --> <!--#INCLUDE FILE="config.asp"--> <!--#INCLUDE FILE="inc_header_short.asp"-->
the following include should be at the bottom:
<!--#INCLUDE FILE="inc_footer_short.asp"-->
Also (appx line 46) in pop_flagmod.asp, look for the following:
<INPUT id=text1 name=comment style="HEIGHT: 49px; WIDTH: 201px"> </P>
change it to say:
<INPUT id=text1 name=comments style="HEIGHT: 49px; WIDTH: 201px"> </P>
In pop_flagmod2.asp, look for the following:
'****************************************************************************** '* DumpRecord '******************************************************************************
Immediately above that, the include set should read:
%> <!--#INCLUDE file="inc_func_common.asp" --> <!--#INCLUDE FILE="config.asp"--> <!--#INCLUDE FILE="inc_header_short.asp"--> <%
Again, at the very end of the file, the include should read:
<!--#INCLUDE FILE="inc_footer_short.asp"-->
Finally, look for the following line:
<font face="<% =strDefaultFontFace %>" size="<% =strHeaderFontSize %>"><a href="JavaScript:onClick= window.close()">Close Window</A></FONT>
Delete it.
For topic.asp, see my next response. |
Edited by - Carefree on 30 October 2002 19:01:56 |
|
|
alex042
Average Member
USA
631 Posts |
Posted - 29 October 2002 : 13:32:33
|
quote: ('pop_flagmod.asp?" &MEMBER_NAME
Is that & supposed to be there? i.e. pop_flagmod.asp?&member_name=admin&topic_id=1&reply_id=1
|
|
|
DJ5A
Junior Member
163 Posts |
Posted - 30 October 2002 : 03:03:16
|
Hello Carefree:
I Placed Your Code where I could, I did not have "end if" Directly under (' DEM --> Start of Code added for Full Moderation) so I Placed it code below this Error & I get this Error:
Microsoft VBScript compilation error '800a0401'
Expected end of statement
/old-forum/topic.asp, line 658
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & " &TOPIC_ID=" & Topic_ID & " &REPLY_ID=" & Reply_ID"')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine ------------------------------------------------------------------------------------------------------------------------------------^
This is where I have it Placed, is this Correct?
' DEM --> Start of Code added for Full Moderation if (AdminAllowed = 1 and Reply_Status > 1) then ReplyString = "REPLY_ID=" & Reply_ReplyID & "&CAT_ID=" & Cat_ID & "&FORUM_ID=" & Forum_ID & "&TOPIC_ID=" & Topic_ID Response.Write " <a href=""JavaScript:openWindow('pop_moderate.asp?" & ReplyString & "')"">" & getCurrentIcon(strIconFolderModerate,"Approve/Hold/Reject this Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewline end if Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & " &TOPIC_ID=" & Topic_ID & " &REPLY_ID=" & Reply_ID"')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine ' DEM --> End of Code added for Full Moderation
Do You Know How to Correct this? Thank You for Your Time! DJ5A |
Thank You for Your Time!!!!! DJ5A |
Edited by - DJ5A on 30 October 2002 08:03:38 |
|
|
clj
Junior Member
145 Posts |
Posted - 30 October 2002 : 15:02:18
|
I have tried to follow this mod too and got the same error.....
Microsoft VBScript compilation error '800a0401'
Expected end of statement
/forum/topic.asp, line 657
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & " &TOPIC_ID=" & Topic_ID & " &REPLY_ID=" & Reply_ID"')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine ------------------------------------------------------------------------------------------------------------------------------------------------------^
I moved it around to a few sensible looking places ie: outside of "end if's" and got the same error.
I also commented that line out and it then errored at the same line which I pasted in around line 982.
Therefore I think maybe there is a syntax error in that line of code. Can anyone help please? Thank u! Clare |
|
|
Carefree
Advanced Member
Philippines
4207 Posts |
Posted - 30 October 2002 : 18:26:55
|
Look for the code for YOUR version of topic.asp:
Version 3.4.03:
Look for these lines (appx 657-663):
if (AdminAllowed = 1 or Reply_MemberID = MemberID) then
if (Cat_Status <> 0 and Forum_Status <> 0 and Topic_Status <> 0) or (AdminAllowed = 1) then
Response.Write " <a href=""JavaScript:openWindow('pop_delete.asp?" & ArchiveLink & "mode=Reply&REPLY_ID=" & Reply_ReplyID & "&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "')"">" & getCurrentIcon(strIconDeleteReply,"Delete Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
' DEM --> Start of Code added for Full Moderation
if (AdminAllowed = 1 and Reply_Status > 1) then
ReplyString = "REPLY_ID=" & Reply_ReplyID & "&CAT_ID=" & Cat_ID & "&FORUM_ID=" & Forum_ID & "&TOPIC_ID=" & Topic_ID
Response.Write " <a href=""JavaScript:openWindow('pop_moderate.asp?" & ReplyString & "')"">" & getCurrentIcon(strIconFolderModerate,"Approve/Hold/Reject this Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewline
end if
' DEM --> End of Code added for Full Moderation
end if
Response.Write " <hr noshade size=""" & strFooterFontSize & """></td>" & vbNewLine & _
between the two lines in blue, insert this line:
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=" & Reply_ReplyID & "')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
so it looks like this:
if (AdminAllowed = 1 or Reply_MemberID = MemberID) then
if (Cat_Status <> 0 and Forum_Status <> 0 and Topic_Status <> 0) or (AdminAllowed = 1) then
Response.Write " <a href=""JavaScript:openWindow('pop_delete.asp?" & ArchiveLink & "mode=Reply&REPLY_ID=" & Reply_ReplyID & "&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "')"">" & getCurrentIcon(strIconDeleteReply,"Delete Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
' DEM --> Start of Code added for Full Moderation
if (AdminAllowed = 1 and Reply_Status > 1) then
ReplyString = "REPLY_ID=" & Reply_ReplyID & "&CAT_ID=" & Cat_ID & "&FORUM_ID=" & Forum_ID & "&TOPIC_ID=" & Topic_ID
Response.Write " <a href=""JavaScript:openWindow('pop_moderate.asp?" & ReplyString & "')"">" & getCurrentIcon(strIconFolderModerate,"Approve/Hold/Reject this Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewline
end if
' DEM --> End of Code added for Full Moderation
end if
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=" & Reply_ReplyID & "')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
Response.Write " <hr noshade size=""" & strFooterFontSize & """></td>" & vbNewLine & _
Look for these lines (appx 855-862):
if (AdminAllowed = 1) or (TMember_ID = MemberID and Topic_Replies < 1) then
Response.Write " <a href=""JavaScript:openWindow('pop_delete.asp?" & ArchiveLink & "mode=Topic&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "&CAT_ID=" & Cat_ID & "')"">" & getCurrentIcon(strIconDeleteReply,"Delete Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
' DEM --> Start of Code added for Full Moderation
if (AdminAllowed = 1 and Topic_Status > 1) then
TopicString = "TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "&CAT_ID=" & Cat_ID
Response.Write " <a href=""JavaScript:openWindow('pop_moderate.asp?" & TopicString & "')"">" & getCurrentIcon(strIconFolderModerate,"Approve/Hold/Reject this Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewline
End if
' End of Code added for Full Moderation
Response.Write " <hr noshade size=""" & strFooterFontSize & """></td>" & vbNewLine & _
between the two lines in blue, insert this line:
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=" & Reply_ReplyID & "')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
so it looks like this:
if (AdminAllowed = 1) or (TMember_ID = MemberID and Topic_Replies < 1) then
Response.Write " <a href=""JavaScript:openWindow('pop_delete.asp?" & ArchiveLink & "mode=Topic&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "&CAT_ID=" & Cat_ID & "')"">" & getCurrentIcon(strIconDeleteReply,"Delete Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
' DEM --> Start of Code added for Full Moderation
if (AdminAllowed = 1 and Topic_Status > 1) then
TopicString = "TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "&CAT_ID=" & Cat_ID
Response.Write " <a href=""JavaScript:openWindow('pop_moderate.asp?" & TopicString & "')"">" & getCurrentIcon(strIconFolderModerate,"Approve/Hold/Reject this Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewline
End if
' End of Code added for Full Moderation
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=" & Reply_ReplyID & "')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
Response.Write " <hr noshade size=""" & strFooterFontSize & """></td>" & vbNewLine & _
Version 3.4.02:
Look for these lines (appx 649-660):
if (AdminAllowed = 1 or Reply_MemberID = MemberID) then
if (Cat_Status <> 0 and Forum_Status <> 0 and Topic_Status <> 0) or (AdminAllowed = 1) then
Response.Write " <a href=""JavaScript:openWindow('pop_delete.asp?" & ArchiveLink & "mode=Reply&REPLY_ID=" & Reply_ReplyID & "&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "')"">" & getCurrentIcon(strIconDeleteReply,"Delete Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
' DEM --> Start of Code added for Full Moderation
if (AdminAllowed = 1 and Reply_Status > 1) then
ReplyString = "REPLY_ID=" & Reply_ReplyID & "&CAT_ID=" & Cat_ID & "&FORUM_ID=" & Forum_ID & "&TOPIC_ID=" & Topic_ID
Response.Write " <a href=""JavaScript:openWindow('pop_moderate.asp?" & ReplyString & "')"">" & getCurrentIcon(strIconFolderModerate,"Approve/Hold/Reject this Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewline
end if
' DEM --> End of Code added for Full Moderation
end if
Response.Write " <hr noshade size=""" & strFooterFontSize & """></td>" & vbNewLine & _
Insert this line between the two in blue:
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=" & Reply_ReplyID & "')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
so it looks like this:
if (AdminAllowed = 1 or Reply_MemberID = MemberID) then
if (Cat_Status <> 0 and Forum_Status <> 0 and Topic_Status <> 0) or (AdminAllowed = 1) then
Response.Write " <a href=""JavaScript:openWindow('pop_delete.asp?" & ArchiveLink & "mode=Reply&REPLY_ID=" & Reply_ReplyID & "&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "')"">" & getCurrentIcon(strIconDeleteReply,"Delete Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
' DEM --> Start of Code added for Full Moderation
if (AdminAllowed = 1 and Reply_Status > 1) then
ReplyString = "REPLY_ID=" & Reply_ReplyID & "&CAT_ID=" & Cat_ID & "&FORUM_ID=" & Forum_ID & "&TOPIC_ID=" & Topic_ID
Response.Write " <a href=""JavaScript:openWindow('pop_moderate.asp?" & ReplyString & "')"">" & getCurrentIcon(strIconFolderModerate,"Approve/Hold/Reject this Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewline
end if
' DEM --> End of Code added for Full Moderation
end if
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=" & Reply_ReplyID & "')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
Response.Write " <hr noshade size=""" & strFooterFontSize & """></td>" & vbNewLine & _
Look for these lines (appx: 849-858):
if (AdminAllowed = 1) or (TMember_ID = MemberID and Topic_Replies < 1) then
Response.Write " <a href=""JavaScript:openWindow('pop_delete.asp?" & ArchiveLink & "mode=Topic&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "&CAT_ID=" & Cat_ID & "')"">" & getCurrentIcon(strIconDeleteReply,"Delete Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
' DEM --> Start of Code added for Full Moderation
if (AdminAllowed = 1 and Topic_Status > 1) then
TopicString = "TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "&CAT_ID=" & Cat_ID
Response.Write " <a href=""JavaScript:openWindow('pop_moderate.asp?" & TopicString & "')"">" & getCurrentIcon(strIconFolderModerate,"Approve/Hold/Reject this Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewline
End if
' End of Code added for Full Moderation
Response.Write " <hr noshade size=""" & strFooterFontSize & """></td>" & vbNewLine & _
Between the lines in blue, add the following line:
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=" & Reply_ReplyID & "')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
so it looks like this:
if (AdminAllowed = 1) or (TMember_ID = MemberID and Topic_Replies < 1) then
Response.Write " <a href=""JavaScript:openWindow('pop_delete.asp?" & ArchiveLink & "mode=Topic&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "&CAT_ID=" & Cat_ID & "')"">" & getCurrentIcon(strIconDeleteReply,"Delete Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
' DEM --> Start of Code added for Full Moderation
if (AdminAllowed = 1 and Topic_Status > 1) then
TopicString = "TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & "&CAT_ID=" & Cat_ID
Response.Write " <a href=""JavaScript:openWindow('pop_moderate.asp?" & TopicString & "')"">" & getCurrentIcon(strIconFolderModerate,"Approve/Hold/Reject this Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewline
End if
' End of Code added for Full Moderation
Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=" & Reply_ReplyID & "')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
Response.Write " <hr noshade size=""" & strFooterFontSize & """></td>" & vbNewLine & _
Now, if you still can't find the lines or make it work, post a link to your topic.asp and I'll try to help.
|
Edited by - Carefree on 30 October 2002 19:00:20 |
|
|
DJ5A
Junior Member
163 Posts |
Posted - 30 October 2002 : 19:49:56
|
Hello:
We are Close.
I Installed lines where you said & Everything Works Fine, Except No Flags in Topics or Replies. I even went on as Regular Member. There is No Errors.
If I place a Link in my Browser directly to pop_flagmod.asp, It Looks Just like on Here, Of Course it's Full Page, Not a Pop Up, I understand that.
Ok, I select one of the Radio Buttons. Then I place Content in to the Comments Box Then Click on Send, I get New Window Just Like here. It's pop_flagmod2.asp Ok...
Then it Sends me E-mail, Some of the Things are Blank (Like Topic ID & or Reply ID) but that's because I wasn't at a Reply or Anything.
Now I do Have the "Powered by OzRoot" Logo on my Second Page (Confirmation or pop_flagmod2.asp) So I Know I have the .gifs in the Right Folder.
Do You Have any Ideas about Why the Flags are Not Showing Up?
I Know I'm a Pain & I Really Appreciate all Your Help!
Thank You for All Your Time!!!!! DJ5A |
Thank You for Your Time!!!!! DJ5A |
|
|
Carefree
Advanced Member
Philippines
4207 Posts |
Posted - 30 October 2002 : 22:06:26
|
Ah yes - I forgot I fixed that. Yes, I can help. In inc_iconfiles.asp:
For version 3.4.02:
Add the following line:
strIconFlag = "icon_flag.gif|15|15"
For version 3.4.03:
Add the following line:
Const strIconFlag = "icon_flag.gif|15|15"
|
|
|
clj
Junior Member
145 Posts |
Posted - 31 October 2002 : 06:22:45
|
Thanks carefree! i think i've got it sussed now! |
|
|
Carefree
Advanced Member
Philippines
4207 Posts |
Posted - 31 October 2002 : 07:41:48
|
You're welcome. |
|
|
DJ5A
Junior Member
163 Posts |
Posted - 31 October 2002 : 09:44:42
|
Hello Everybody:
Ok, I got it Working! Yeeeeeeeeeeeha! Now the Members will have Something Else to do & I'll Have More E-mails to Read! But the Advantage is I will Not have to Monitor the Forum as Much? LOL, I just Let the Members Tell on Each Other!
Thank You foo for the Mod! A Special Thank You to Carefree for Helping to get this Code Going on the 3.4 Version?
LOL Now Complaints & Questions, Neither one is a Biggy! But...
The Member Name Doesn't Work (Left Blank) in the Confirmation Pop Up Window or More Importantly the Confirmation E-mail? Here's Examples: This is Pop Up Window! Topic ID = 847 Reply ID = 4113 Member Name = Flagged by: 12.XXX.XXX.XX at 10/31/2002 8:08:32 AM
This is in E-mail Confirmation! /////////////////// SUMMARY ///////////////////////// Flagged Topic ID = 847(http://www.XXXXXXXXXX.com/XXXX//topic.asp?TOPIC_ID=XXX) Flagged Reply ID = 4113 Flagged Member Name = Flagged for = OTHER Comments = This is a Test From Administrator! Flagged by: 12.218.192.53 (Name=Member+Name&Pword=XXXXX---XXXXX) Flagged at: 10/31/2002 8:08:32 AM
Does anybody Know how to Correct the Missing Member Name?
Also How Hard would it be to Hide the Flag from Visitors?
Is All the Extra Fields in the Topic & Reply area of the E-mail Neccessary?
It's Still A Great Mod as it is & I See it as a Real Helper - Time Saver! Again Yeeeeeeeeeeeha!
|
Thank You for Your Time!!!!! DJ5A |
Edited by - DJ5A on 31 October 2002 09:52:22 |
|
|
Carefree
Advanced Member
Philippines
4207 Posts |
Posted - 31 October 2002 : 12:02:58
|
I've redone the pop_flagmod2.asp to fix the data reporting. The method he used would only work if cookies were being used. Here's a link to a .txt version. Remember to change the variables in the first few lines for your own system and save as .asp instead of .txt.
http://CarefreeComputing.net/forums/pop_flagmod2.txt
As for hiding the flags from visitors, simply modify the lines of code in topic.asp as follows:
if mLev > 0 then Response.Write " <a href=""JavaScript:openWindow('pop_flagmod.asp?MEMBER_NAME=" & Member_Name & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=" & Reply_ReplyID & "')"">" & getCurrentIcon(strIconFlag,"Flag Topic For Review","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
Add the part in red in front of each line and only members will see the flags. |
Edited by - Carefree on 31 October 2002 12:03:41 |
|
|
DJ5A
Junior Member
163 Posts |
Posted - 31 October 2002 : 14:41:47
|
Hello:
Thanks Carefree! The Flag is Now only available to Members!
Is there anyway to Pull Up Member Name in the Confirmation Page & More Important in the Flagged Member Name in the E-mail! |
Thank You for Your Time!!!!! DJ5A |
|
|
Carefree
Advanced Member
Philippines
4207 Posts |
Posted - 31 October 2002 : 20:47:38
|
Both names should now show properly with the .txt version I posted the link to. |
|
|
DJ5A
Junior Member
163 Posts |
Posted - 31 October 2002 : 23:21:50
|
Hello:
The Member Name & Flagged Member Name is still not coming up. I went back & Loaded New .txt File again & Changed it to .pop_flagmod2.asp The Only thing I changed on this last file was the Configurations Varibles.
I have no idea why it's not working?
Does anybody have a Solution to Correct this? |
Thank You for Your Time!!!!! DJ5A |
Edited by - DJ5A on 07 November 2002 19:18:38 |
|
|
Topic |
|