impostor 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/Manifest.txt +50 -0
- data/README.txt +65 -0
- data/Rakefile +40 -0
- data/lib/impostor.rb +6 -0
- data/lib/www/impostor/phpbb2.rb +260 -0
- data/lib/www/impostor/wwf79.rb +254 -0
- data/lib/www/impostor/wwf80.rb +264 -0
- data/lib/www/impostor.rb +269 -0
- data/test/fixtures/phpbb2-get-new_topic-form-good-response.html +725 -0
- data/test/fixtures/phpbb2-get-viewtopic-for-new-topic-good-response.html +364 -0
- data/test/fixtures/phpbb2-get-viewtopic-for-new-topic-malformed-response.html +364 -0
- data/test/fixtures/phpbb2-index.html +361 -0
- data/test/fixtures/phpbb2-logged-in.html +349 -0
- data/test/fixtures/phpbb2-login.html +306 -0
- data/test/fixtures/phpbb2-not-logged-in.html +349 -0
- data/test/fixtures/phpbb2-post-new_topic-good-response.html +290 -0
- data/test/fixtures/phpbb2-post-reply-good-response.html +290 -0
- data/test/fixtures/phpbb2-post-reply-throttled-response.html +290 -0
- data/test/fixtures/phpbb2-too-many-posts.html +290 -0
- data/test/fixtures/wwf79-forum_posts.html +422 -0
- data/test/fixtures/wwf79-general-new-topic-error.html +46 -0
- data/test/fixtures/wwf79-general-posting-error.html +46 -0
- data/test/fixtures/wwf79-good-post-forum_posts.html +462 -0
- data/test/fixtures/wwf79-index.html +137 -0
- data/test/fixtures/wwf79-logged-in.html +46 -0
- data/test/fixtures/wwf79-login.html +123 -0
- data/test/fixtures/wwf79-new-topic-forum_posts-response.html +305 -0
- data/test/fixtures/wwf79-new-topic-post_message_form.html +212 -0
- data/test/fixtures/wwf79-not-logged-in.html +128 -0
- data/test/fixtures/wwf79-too-many-posts.html +46 -0
- data/test/fixtures/wwf79-too-many-topics.html +46 -0
- data/test/fixtures/wwf80-general-posting-error.html +54 -0
- data/test/fixtures/wwf80-get-new_topic-form-good-response.html +217 -0
- data/test/fixtures/wwf80-get-viewtopic-for-new-topic-good-response.html +290 -0
- data/test/fixtures/wwf80-index.html +371 -0
- data/test/fixtures/wwf80-logged-in.html +52 -0
- data/test/fixtures/wwf80-login.html +125 -0
- data/test/fixtures/wwf80-new_reply_form.html +204 -0
- data/test/fixtures/wwf80-not-logged-in.html +136 -0
- data/test/fixtures/wwf80-post-new_topic-good-response.html +293 -0
- data/test/fixtures/wwf80-post-reply-good-response.html +331 -0
- data/test/fixtures/wwf80-too-many-posts.html +54 -0
- data/test/test_helper.rb +38 -0
- data/test/test_www_impostor.rb +165 -0
- data/test/test_www_impostor_phpbb2.rb +536 -0
- data/test/test_www_impostor_wwf79.rb +535 -0
- data/test/test_www_impostor_wwf80.rb +535 -0
- data/vendor/plugins/impostor/lib/autotest/discover.rb +3 -0
- data/vendor/plugins/impostor/lib/autotest/impostor.rb +49 -0
- data.tar.gz.sig +3 -0
- metadata +156 -0
- metadata.gz.sig +3 -0
@@ -0,0 +1,462 @@
|
|
1
|
+
<html><head><title>Post Alley..: test</title>
|
2
|
+
|
3
|
+
|
4
|
+
<meta name="copyright" content="Copyright (C) 2001-2004 Bruce Corkhill"><!-- Web Wiz Forums ver. 7.91 is written and produced by Bruce Corkhill �2001-2004
|
5
|
+
If you want your own FREE Forum then goto http://www.webwizforums.com -->
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
<script language="JavaScript">
|
10
|
+
function CheckForm() {
|
11
|
+
var errorMsg = '';
|
12
|
+
//For Gecko Madis API (RTE)
|
13
|
+
if (document.frmAddMessage.message.value.indexOf('<br>') > -1 && document.frmAddMessage.message.value.length == 8) document.frmAddMessage.message.value = '';
|
14
|
+
|
15
|
+
|
16
|
+
//Check for message
|
17
|
+
if (document.frmAddMessage.message.value==''){
|
18
|
+
errorMsg += '\n\tMessage \t\t- Enter a Message to post';
|
19
|
+
}
|
20
|
+
|
21
|
+
//If there is aproblem with the form then display an error
|
22
|
+
if (errorMsg != ''){
|
23
|
+
msg = '_______________________________________________________________\n\n';
|
24
|
+
msg += 'The form has not been submitted because there are problem(s) with the form.\n';
|
25
|
+
msg += 'Please correct the problem(s) and re-submit the form.\n';
|
26
|
+
msg += '_______________________________________________________________\n\n';
|
27
|
+
msg += 'The following field(s) need to be corrected: -\n';
|
28
|
+
|
29
|
+
errorMsg += alert(msg + errorMsg + '\n\n');
|
30
|
+
return false;
|
31
|
+
}
|
32
|
+
|
33
|
+
//Reset the submition action
|
34
|
+
document.frmAddMessage.action = 'post_message.asp?PN=1'
|
35
|
+
document.frmAddMessage.target = '_self';
|
36
|
+
document.frmAddMessage.Submit.disabled=true;
|
37
|
+
return true;
|
38
|
+
}
|
39
|
+
</script><script language="javascript" src="wwf79-good-forum_posts.asp_files/default_javascript.js" type="text/javascript"></script>
|
40
|
+
|
41
|
+
<link href="wwf79-good-forum_posts.asp_files/default_style.css" rel="stylesheet" type="text/css"><style type="text/css">@import url(http://hoodwink.d/themes/1/hoodwinkd.css);</style><style type="text/css"></style></head><body leftmargin="0" topmargin="0" background="" bgcolor="#ffffff" marginheight="0" marginwidth="0" text="#000000"><table align="center" border="0" cellpadding="4" cellspacing="0" width="98%">
|
42
|
+
<tbody><tr>
|
43
|
+
<td class="text">
|
44
|
+
<a href="http://auggiedawg.com/auggiedawg/forum" target="_self"><img src="wwf79-good-forum_posts.asp_files/Fuzzy2.jpg" border="0"></a>
|
45
|
+
</td>
|
46
|
+
<td align="center" height="2"><table border="0" cellpadding="0" cellspacing="0" width="100%">
|
47
|
+
<tbody><tr>
|
48
|
+
<td align="center"> <a href="http://auggiedawg.com/forum/active_topics.asp" target="_self" class="nav"><img src="wwf79-good-forum_posts.asp_files/active_topics.gif" alt="Active Topics" align="absmiddle" border="0">Active Topics</a> <a href="http://auggiedawg.com/forum/members.asp" target="_self" class="nav"><img src="wwf79-good-forum_posts.asp_files/members_list.gif" alt="Display List of Forum Members" align="absmiddle" border="0">Memberlist</a> <a href="http://auggiedawg.com/forum/search_form.asp?FID=39" target="_self" class="nav"><img src="wwf79-good-forum_posts.asp_files/search.gif" alt="Search The Forum" align="absmiddle" border="0">Search</a> <a href="http://auggiedawg.com/forum/help.asp" target="_self" class="nav"><img src="wwf79-good-forum_posts.asp_files/help_icon.gif" alt="Help" align="absmiddle" border="0">Help</a><br></td>
|
49
|
+
</tr>
|
50
|
+
<tr>
|
51
|
+
<td align="center"><a href="http://auggiedawg.com/forum/pm_welcome.asp" target="_self" class="nav"><img src="wwf79-good-forum_posts.asp_files/read_private_message_icon.gif" alt="Read" message="" align="absmiddle" border="0">Private Messenger</a> <a href="http://auggiedawg.com/forum/member_control_panel.asp" target="_self" class="nav"><img src="wwf79-good-forum_posts.asp_files/admin_icon.gif" alt="Member Control Panel Menu" align="absmiddle" border="0">Settings</a> <a href="http://auggiedawg.com/forum/log_off_user.asp" target="_self" class="nav"><img src="wwf79-good-forum_posts.asp_files/log_off_icon.gif" alt="Logout" align="absmiddle" border="0">Logout [tester]</a></td>
|
52
|
+
</tr>
|
53
|
+
</tbody></table>
|
54
|
+
</td>
|
55
|
+
</tr>
|
56
|
+
</tbody></table>
|
57
|
+
<a name="top"></a>
|
58
|
+
<table align="center" border="0" cellpadding="3" cellspacing="0" width="98%"><tbody><tr>
|
59
|
+
<td class="heading" align="left">Phone photos</td>
|
60
|
+
</tr>
|
61
|
+
<tr>
|
62
|
+
<td class="bold" align="left" width="95%"><img src="wwf79-good-forum_posts.asp_files/open_folder_icon.gif" align="absmiddle" border="0"> <a href="http://auggiedawg.com/forum/default.asp" target="_self" class="boldLink">Post Alley..</a> : <a href="http://auggiedawg.com/forum/forum_topics.asp?FID=39&PN=1" target="_self" class="boldLink">Phone photos</a>
|
63
|
+
</td>
|
64
|
+
<td align="right" width="5%">
|
65
|
+
</td>
|
66
|
+
</tr>
|
67
|
+
</tbody></table>
|
68
|
+
<table align="center" border="0" cellpadding="4" cellspacing="0" width="98%">
|
69
|
+
<tbody><tr>
|
70
|
+
<td width="70%"><span class="lgText"><img src="wwf79-good-forum_posts.asp_files/subject_folder.gif" alt="Subject" align="absmiddle"> Topic: test</span>
|
71
|
+
</td>
|
72
|
+
<td align="right"><a href="#reply" target="_self"><img src="wwf79-good-forum_posts.asp_files/post_reply.gif" alt="Post Reply" align="absmiddle" border="0"></a><a href="http://auggiedawg.com/forum/post_message_form.asp?FID=39" target="_self"><img src="wwf79-good-forum_posts.asp_files/new_post.gif" alt="Post New Topic" align="absmiddle" border="0"></a><a href="http://auggiedawg.com/forum/poll_create_form.asp?FID=39" target="_self"><img src="wwf79-good-forum_posts.asp_files/new_poll.gif" alt="Create New Poll" align="absmiddle" border="0"></a>
|
73
|
+
</td>
|
74
|
+
</tr>
|
75
|
+
</tbody></table><table align="center" bgcolor="#006699" border="0" cellpadding="1" cellspacing="0" width="98%">
|
76
|
+
<tbody><tr>
|
77
|
+
<td>
|
78
|
+
<table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="100%">
|
79
|
+
<tbody><tr>
|
80
|
+
<td bgcolor="#ffffff">
|
81
|
+
<table border="0" cellpadding="3" cellspacing="1" width="100%">
|
82
|
+
<tbody><tr>
|
83
|
+
<td class="tHeading" background="wwf79-good-forum_posts.asp_files/table_bg_image.html" bgcolor="#cccccc" nowrap="nowrap" width="140">Author</td>
|
84
|
+
<td class="tHeading" background="wwf79-good-forum_posts.asp_files/table_bg_image.html" bgcolor="#cccccc" nowrap="nowrap" width="82%"><table border="0" cellpadding="0" cellspacing="0" width="100%">
|
85
|
+
<tbody><tr>
|
86
|
+
<td class="tHeading" width="20%">Message</td>
|
87
|
+
<td align="right" nowrap="nowrap" width="80%"><a href="http://auggiedawg.com/forum/get_topic.asp?FID=39&TID=135&DIR=P" target="_self" class="npLink"><< Prev Topic</a> | <a href="http://auggiedawg.com/forum/get_topic.asp?FID=39&TID=135&DIR=N" target="_self" class="npLink">Next Topic >></a></td>
|
88
|
+
</tr>
|
89
|
+
</tbody></table></td>
|
90
|
+
</tr>
|
91
|
+
<tr>
|
92
|
+
<td class="smText" background="" bgcolor="#efefef" valign="top">
|
93
|
+
<a name="1203"></a>
|
94
|
+
<span class="bold">tester</span><br>Barney<br>
|
95
|
+
<img src="wwf79-good-forum_posts.asp_files/1_star_rating.gif" alt="Barney"><br><img src="wwf79-good-forum_posts.asp_files/mike-fs-cellphone-110x110.png" alt="Avatar" onerror="this.src='forum_images/blank.gif', height='0';" height="95" vspace="5" width="95"><br><br>Joined: 17 October 2006<br>Location: United States
|
96
|
+
<br>Online Status: Online<br>Posts: 8
|
97
|
+
</td>
|
98
|
+
<td class="text" background="" bgcolor="#efefef" valign="top">
|
99
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
100
|
+
<tbody><tr>
|
101
|
+
<td class="smText" width="80%">Posted: 01 September 2007 at 1:15am | IP Logged
|
102
|
+
</td>
|
103
|
+
<td align="right" nowrap="nowrap" width="20%">
|
104
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?M=Q&PID=1203&TPN=1"><img src="wwf79-good-forum_posts.asp_files/quote_icon.gif" alt="Quote tester" align="absmiddle" border="0"></a>
|
105
|
+
</td>
|
106
|
+
</tr>
|
107
|
+
<tr>
|
108
|
+
<td colspan="2"><hr></td>
|
109
|
+
</tr>
|
110
|
+
</tbody></table>
|
111
|
+
<!-- Message body -->
|
112
|
+
test
|
113
|
+
|
114
|
+
<!-- Message body ''"" -->
|
115
|
+
</td>
|
116
|
+
</tr>
|
117
|
+
<tr>
|
118
|
+
<td background="" bgcolor="#efefef"><a href="#top" target="_self" class="npLink">Back to Top</a></td>
|
119
|
+
<td class="text" background="" bgcolor="#efefef"><a href="javascript:openWin('pop_up_profile.asp?PF=27&FID=39','profile','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=590,height=425')"><img src="wwf79-good-forum_posts.asp_files/profile_icon.gif" alt="View tester's Profile" align="absmiddle" border="0"></a>
|
120
|
+
<a href="http://auggiedawg.com/forum/search_form.asp?KW=tester&SI=AR&FM=39&FID=39&TID=135&PN=1&TPN=1"><img src="wwf79-good-forum_posts.asp_files/search_sm.gif" alt="Search for other posts by tester" align="absmiddle" border="0"></a>
|
121
|
+
<a href="http://mondragon.cc/" target="_blank"><img src="wwf79-good-forum_posts.asp_files/home_icon.gif" alt="Visit tester's Homepage" align="absmiddle" border="0"></a>
|
122
|
+
<a href="http://auggiedawg.com/forum/pm_new_message_form.asp?name=tester" target="_self"><img src="wwf79-good-forum_posts.asp_files/pm_icon.gif" alt="Send Private Message" align="absmiddle" border="0"></a>
|
123
|
+
<a href="http://auggiedawg.com/forum/pm_buddy_list.asp?name=tester" target="_self"><img src="wwf79-good-forum_posts.asp_files/add_buddy_sm.gif" alt="Add to Buddy List" align="absmiddle" border="0"></a>
|
124
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?PID=1203&PN=1&TPN=1" target="_self"><img src="wwf79-good-forum_posts.asp_files/edit_post_icon.gif" alt="Edit Post" align="absmiddle" border="0"></a>
|
125
|
+
</td>
|
126
|
+
</tr>
|
127
|
+
|
128
|
+
<tr>
|
129
|
+
<td colspan="2" align="center" background="" bgcolor="#d1d7dc"><span style="font-size: 2px;"> </span></td>
|
130
|
+
</tr><tr>
|
131
|
+
<td class="smText" background="" bgcolor="#dee3e7" valign="top">
|
132
|
+
<a name="1204"></a>
|
133
|
+
<span class="bold">tester</span><br>Barney<br>
|
134
|
+
<img src="wwf79-good-forum_posts.asp_files/1_star_rating.gif" alt="Barney"><br><img src="wwf79-good-forum_posts.asp_files/mike-fs-cellphone-110x110.png" alt="Avatar" onerror="this.src='forum_images/blank.gif', height='0';" height="95" vspace="5" width="95"><br><br>Joined: 17 October 2006<br>Location: United States
|
135
|
+
<br>Online Status: Online<br>Posts: 8
|
136
|
+
</td>
|
137
|
+
<td class="text" background="" bgcolor="#dee3e7" valign="top">
|
138
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
139
|
+
<tbody><tr>
|
140
|
+
<td class="smText" width="80%">Posted: 01 September 2007 at 1:16am | IP Logged
|
141
|
+
</td>
|
142
|
+
<td align="right" nowrap="nowrap" width="20%">
|
143
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?M=Q&PID=1204&TPN=1"><img src="wwf79-good-forum_posts.asp_files/quote_icon.gif" alt="Quote tester" align="absmiddle" border="0"></a>
|
144
|
+
</td>
|
145
|
+
</tr>
|
146
|
+
<tr>
|
147
|
+
<td colspan="2"><hr></td>
|
148
|
+
</tr>
|
149
|
+
</tbody></table>
|
150
|
+
<!-- Message body -->
|
151
|
+
test again
|
152
|
+
|
153
|
+
<!-- Message body ''"" -->
|
154
|
+
</td>
|
155
|
+
</tr>
|
156
|
+
<tr>
|
157
|
+
<td background="" bgcolor="#dee3e7"><a href="#top" target="_self" class="npLink">Back to Top</a></td>
|
158
|
+
<td class="text" background="" bgcolor="#dee3e7"><a href="javascript:openWin('pop_up_profile.asp?PF=27&FID=39','profile','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=590,height=425')"><img src="wwf79-good-forum_posts.asp_files/profile_icon.gif" alt="View tester's Profile" align="absmiddle" border="0"></a>
|
159
|
+
<a href="http://auggiedawg.com/forum/search_form.asp?KW=tester&SI=AR&FM=39&FID=39&TID=135&PN=1&TPN=1"><img src="wwf79-good-forum_posts.asp_files/search_sm.gif" alt="Search for other posts by tester" align="absmiddle" border="0"></a>
|
160
|
+
<a href="http://mondragon.cc/" target="_blank"><img src="wwf79-good-forum_posts.asp_files/home_icon.gif" alt="Visit tester's Homepage" align="absmiddle" border="0"></a>
|
161
|
+
<a href="http://auggiedawg.com/forum/pm_new_message_form.asp?name=tester" target="_self"><img src="wwf79-good-forum_posts.asp_files/pm_icon.gif" alt="Send Private Message" align="absmiddle" border="0"></a>
|
162
|
+
<a href="http://auggiedawg.com/forum/pm_buddy_list.asp?name=tester" target="_self"><img src="wwf79-good-forum_posts.asp_files/add_buddy_sm.gif" alt="Add to Buddy List" align="absmiddle" border="0"></a>
|
163
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?PID=1204&PN=1&TPN=1" target="_self"><img src="wwf79-good-forum_posts.asp_files/edit_post_icon.gif" alt="Edit Post" align="absmiddle" border="0"></a>
|
164
|
+
</td>
|
165
|
+
</tr>
|
166
|
+
|
167
|
+
<tr>
|
168
|
+
<td colspan="2" align="center" background="" bgcolor="#d1d7dc"><span style="font-size: 2px;"> </span></td>
|
169
|
+
</tr><tr>
|
170
|
+
<td class="smText" background="" bgcolor="#efefef" valign="top">
|
171
|
+
<a name="1205"></a>
|
172
|
+
<span class="bold">tester</span><br>Barney<br>
|
173
|
+
<img src="wwf79-good-forum_posts.asp_files/1_star_rating.gif" alt="Barney"><br><img src="wwf79-good-forum_posts.asp_files/mike-fs-cellphone-110x110.png" alt="Avatar" onerror="this.src='forum_images/blank.gif', height='0';" height="95" vspace="5" width="95"><br><br>Joined: 17 October 2006<br>Location: United States
|
174
|
+
<br>Online Status: Online<br>Posts: 8
|
175
|
+
</td>
|
176
|
+
<td class="text" background="" bgcolor="#efefef" valign="top">
|
177
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
178
|
+
<tbody><tr>
|
179
|
+
<td class="smText" width="80%">Posted: 01 September 2007 at 1:34am | IP Logged
|
180
|
+
</td>
|
181
|
+
<td align="right" nowrap="nowrap" width="20%">
|
182
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?M=Q&PID=1205&TPN=1"><img src="wwf79-good-forum_posts.asp_files/quote_icon.gif" alt="Quote tester" align="absmiddle" border="0"></a>
|
183
|
+
</td>
|
184
|
+
</tr>
|
185
|
+
<tr>
|
186
|
+
<td colspan="2"><hr></td>
|
187
|
+
</tr>
|
188
|
+
</tbody></table>
|
189
|
+
<!-- Message body -->
|
190
|
+
one move
|
191
|
+
|
192
|
+
<!-- Message body ''"" -->
|
193
|
+
</td>
|
194
|
+
</tr>
|
195
|
+
<tr>
|
196
|
+
<td background="" bgcolor="#efefef"><a href="#top" target="_self" class="npLink">Back to Top</a></td>
|
197
|
+
<td class="text" background="" bgcolor="#efefef"><a href="javascript:openWin('pop_up_profile.asp?PF=27&FID=39','profile','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=590,height=425')"><img src="wwf79-good-forum_posts.asp_files/profile_icon.gif" alt="View tester's Profile" align="absmiddle" border="0"></a>
|
198
|
+
<a href="http://auggiedawg.com/forum/search_form.asp?KW=tester&SI=AR&FM=39&FID=39&TID=135&PN=1&TPN=1"><img src="wwf79-good-forum_posts.asp_files/search_sm.gif" alt="Search for other posts by tester" align="absmiddle" border="0"></a>
|
199
|
+
<a href="http://mondragon.cc/" target="_blank"><img src="wwf79-good-forum_posts.asp_files/home_icon.gif" alt="Visit tester's Homepage" align="absmiddle" border="0"></a>
|
200
|
+
<a href="http://auggiedawg.com/forum/pm_new_message_form.asp?name=tester" target="_self"><img src="wwf79-good-forum_posts.asp_files/pm_icon.gif" alt="Send Private Message" align="absmiddle" border="0"></a>
|
201
|
+
<a href="http://auggiedawg.com/forum/pm_buddy_list.asp?name=tester" target="_self"><img src="wwf79-good-forum_posts.asp_files/add_buddy_sm.gif" alt="Add to Buddy List" align="absmiddle" border="0"></a>
|
202
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?PID=1205&PN=1&TPN=1" target="_self"><img src="wwf79-good-forum_posts.asp_files/edit_post_icon.gif" alt="Edit Post" align="absmiddle" border="0"></a>
|
203
|
+
</td>
|
204
|
+
</tr>
|
205
|
+
|
206
|
+
<tr>
|
207
|
+
<td colspan="2" align="center" background="" bgcolor="#d1d7dc"><span style="font-size: 2px;"> </span></td>
|
208
|
+
</tr><tr>
|
209
|
+
<td class="smText" background="" bgcolor="#dee3e7" valign="top">
|
210
|
+
<a name="1206"></a>
|
211
|
+
<span class="bold">winkelman</span><br>Sucking at life.<br>
|
212
|
+
<img src="wwf79-good-forum_posts.asp_files/3_star_rating.gif" alt="Sucking at life."><br><img src="wwf79-good-forum_posts.asp_files/2007-05-02_091943_2_todd_stairs_1.jpg" alt="Avatar" onerror="this.src='forum_images/blank.gif', height='0';" height="95" vspace="5" width="95"><br><br>Joined: 18 October 2005<br>Location: Germany
|
213
|
+
<br>Online Status: Offline<br>Posts: 153
|
214
|
+
</td>
|
215
|
+
<td class="text" background="" bgcolor="#dee3e7" valign="top">
|
216
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
217
|
+
<tbody><tr>
|
218
|
+
<td class="smText" width="80%">Posted: 08 September 2007 at 10:56am | IP Logged
|
219
|
+
</td>
|
220
|
+
<td align="right" nowrap="nowrap" width="20%">
|
221
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?M=Q&PID=1206&TPN=1"><img src="wwf79-good-forum_posts.asp_files/quote_icon.gif" alt="Quote winkelman" align="absmiddle" border="0"></a>
|
222
|
+
</td>
|
223
|
+
</tr>
|
224
|
+
<tr>
|
225
|
+
<td colspan="2"><hr></td>
|
226
|
+
</tr>
|
227
|
+
</tbody></table>
|
228
|
+
<!-- Message body -->
|
229
|
+
hey! someone posts on here.<br>
|
230
|
+
<br>
|
231
|
+
<img src="wwf79-good-forum_posts.asp_files/smiley1.gif" border="0"><br>
|
232
|
+
|
233
|
+
<!-- Signature --><br><br>__________________<br>it's high time you get as safe as possible.<!-- Signature -->
|
234
|
+
<!-- Message body ''"" -->
|
235
|
+
</td>
|
236
|
+
</tr>
|
237
|
+
<tr>
|
238
|
+
<td background="" bgcolor="#dee3e7"><a href="#top" target="_self" class="npLink">Back to Top</a></td>
|
239
|
+
<td class="text" background="" bgcolor="#dee3e7"><a href="javascript:openWin('pop_up_profile.asp?PF=24&FID=39','profile','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=590,height=425')"><img src="wwf79-good-forum_posts.asp_files/profile_icon.gif" alt="View winkelman's Profile" align="absmiddle" border="0"></a>
|
240
|
+
<a href="http://auggiedawg.com/forum/search_form.asp?KW=winkelman&SI=AR&FM=39&FID=39&TID=135&PN=1&TPN=1"><img src="wwf79-good-forum_posts.asp_files/search_sm.gif" alt="Search for other posts by winkelman" align="absmiddle" border="0"></a>
|
241
|
+
<a href="http://auggiedawg.com/forum/pm_new_message_form.asp?name=winkelman" target="_self"><img src="wwf79-good-forum_posts.asp_files/pm_icon.gif" alt="Send Private Message" align="absmiddle" border="0"></a>
|
242
|
+
<a href="http://auggiedawg.com/forum/pm_buddy_list.asp?name=winkelman" target="_self"><img src="wwf79-good-forum_posts.asp_files/add_buddy_sm.gif" alt="Add to Buddy List" align="absmiddle" border="0"></a>
|
243
|
+
</td>
|
244
|
+
</tr>
|
245
|
+
|
246
|
+
<tr>
|
247
|
+
<td colspan="2" align="center" background="" bgcolor="#d1d7dc"><span style="font-size: 2px;"> </span></td>
|
248
|
+
</tr><tr>
|
249
|
+
<td class="smText" background="" bgcolor="#efefef" valign="top">
|
250
|
+
<a name="1213"></a>
|
251
|
+
<span class="bold">tester</span><br>Barney<br>
|
252
|
+
<img src="wwf79-good-forum_posts.asp_files/1_star_rating.gif" alt="Barney"><br><img src="wwf79-good-forum_posts.asp_files/mike-fs-cellphone-110x110.png" alt="Avatar" onerror="this.src='forum_images/blank.gif', height='0';" height="95" vspace="5" width="95"><br><br>Joined: 17 October 2006<br>Location: United States
|
253
|
+
<br>Online Status: Online<br>Posts: 8
|
254
|
+
</td>
|
255
|
+
<td class="text" background="" bgcolor="#efefef" valign="top">
|
256
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
257
|
+
<tbody><tr>
|
258
|
+
<td class="smText" width="80%">Posted: 24 October 2007 at 7:09pm | IP Logged
|
259
|
+
</td>
|
260
|
+
<td align="right" nowrap="nowrap" width="20%">
|
261
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?M=Q&PID=1213&TPN=1"><img src="wwf79-good-forum_posts.asp_files/quote_icon.gif" alt="Quote tester" align="absmiddle" border="0"></a>
|
262
|
+
</td>
|
263
|
+
</tr>
|
264
|
+
<tr>
|
265
|
+
<td colspan="2"><hr></td>
|
266
|
+
</tr>
|
267
|
+
</tbody></table>
|
268
|
+
<!-- Message body -->
|
269
|
+
test some more
|
270
|
+
|
271
|
+
<!-- Message body ''"" -->
|
272
|
+
</td>
|
273
|
+
</tr>
|
274
|
+
<tr>
|
275
|
+
<td background="" bgcolor="#efefef"><a href="#top" target="_self" class="npLink">Back to Top</a></td>
|
276
|
+
<td class="text" background="" bgcolor="#efefef"><a href="javascript:openWin('pop_up_profile.asp?PF=27&FID=39','profile','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=590,height=425')"><img src="wwf79-good-forum_posts.asp_files/profile_icon.gif" alt="View tester's Profile" align="absmiddle" border="0"></a>
|
277
|
+
<a href="http://auggiedawg.com/forum/search_form.asp?KW=tester&SI=AR&FM=39&FID=39&TID=135&PN=1&TPN=1"><img src="wwf79-good-forum_posts.asp_files/search_sm.gif" alt="Search for other posts by tester" align="absmiddle" border="0"></a>
|
278
|
+
<a href="http://mondragon.cc/" target="_blank"><img src="wwf79-good-forum_posts.asp_files/home_icon.gif" alt="Visit tester's Homepage" align="absmiddle" border="0"></a>
|
279
|
+
<a href="http://auggiedawg.com/forum/pm_new_message_form.asp?name=tester" target="_self"><img src="wwf79-good-forum_posts.asp_files/pm_icon.gif" alt="Send Private Message" align="absmiddle" border="0"></a>
|
280
|
+
<a href="http://auggiedawg.com/forum/pm_buddy_list.asp?name=tester" target="_self"><img src="wwf79-good-forum_posts.asp_files/add_buddy_sm.gif" alt="Add to Buddy List" align="absmiddle" border="0"></a>
|
281
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?PID=1213&PN=1&TPN=1" target="_self"><img src="wwf79-good-forum_posts.asp_files/edit_post_icon.gif" alt="Edit Post" align="absmiddle" border="0"></a>
|
282
|
+
<a href="http://auggiedawg.com/forum/delete_post.asp?PID=1213&PN=1&TPN=1" target="_self" onclick="return confirm('Are you sure you want to delete this post?')"><img src="wwf79-good-forum_posts.asp_files/delete_sm.gif" alt="Delete Post" align="absmiddle" border="0"></a>
|
283
|
+
</td>
|
284
|
+
</tr>
|
285
|
+
|
286
|
+
<tr>
|
287
|
+
<td colspan="2" align="center" background="" bgcolor="#d1d7dc"><span style="font-size: 2px;"> </span></td> </tr>
|
288
|
+
</tbody></table></td>
|
289
|
+
</tr>
|
290
|
+
</tbody></table>
|
291
|
+
</td></tr>
|
292
|
+
</tbody></table>
|
293
|
+
<br>
|
294
|
+
<div align="center"><a name="reply"></a>
|
295
|
+
<span class="heading">Post Reply</span><br>
|
296
|
+
<script language="JavaScript" src="wwf79-good-forum_posts.asp_files/RTE_message_form_js.html" type="text/javascript"></script>
|
297
|
+
<form method="post" name="frmAddMessage" action="post_message.asp?PN=" onsubmit="return CheckForm();" onreset="return ResetForm();">
|
298
|
+
<table align="center" bgcolor="#006699" border="0" cellpadding="1" cellspacing="0" height="230" width="610">
|
299
|
+
<tbody><tr>
|
300
|
+
<td>
|
301
|
+
<table align="center" background="" bgcolor="#efefef" border="0" cellpadding="0" cellspacing="0" height="201" width="100%">
|
302
|
+
<tbody><tr>
|
303
|
+
<td>
|
304
|
+
<table align="center" border="0" cellpadding="2" cellspacing="0" height="233" width="100%">
|
305
|
+
<tbody><tr>
|
306
|
+
<td colspan="2" class="text" align="left" height="30">*Indicates required fields</td>
|
307
|
+
</tr> <tr>
|
308
|
+
<td align="right" valign="bottom" width="15%"> </td>
|
309
|
+
<td valign="bottom" width="70%">
|
310
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
311
|
+
<tbody><tr>
|
312
|
+
<td>
|
313
|
+
<table border="0" cellpadding="2" cellspacing="0" width="100%">
|
314
|
+
<tbody><tr>
|
315
|
+
<td>
|
316
|
+
<span id="ToolBar1">
|
317
|
+
<select id="selectFont" name="selectFont" onchange="FormatText('fontname', selectFont.options[selectFont.selectedIndex].value); document.frmAddMessage.selectFont.options[0].selected = true;">
|
318
|
+
<option value="0" selected="selected">-- Font Type --</option>
|
319
|
+
<option value="Arial, Helvetica, sans-serif">Arial</option>
|
320
|
+
<option value="Times New Roman, Times, serif">Times</option>
|
321
|
+
<option value="Courier New, Courier, mono">Courier New</option>
|
322
|
+
<option value="Verdana, Arial, Helvetica, sans-serif">Verdana</option>
|
323
|
+
</select>
|
324
|
+
<select id="selectFontSize" name="selectFontSize" onchange="FormatText('fontsize', selectFontSize.options[selectFontSize.selectedIndex].value); document.frmAddMessage.selectFontSize.options[0].selected = true;">
|
325
|
+
<option value="0" selected="selected">-- Font Size --</option>
|
326
|
+
<option value="1">1</option>
|
327
|
+
<option value="2">2</option>
|
328
|
+
<option value="3">3</option>
|
329
|
+
<option value="4">4</option>
|
330
|
+
<option value="5">5</option>
|
331
|
+
<option value="6">6</option>
|
332
|
+
<option value="7">7</option>
|
333
|
+
</select>
|
334
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_bold.gif" title="Bold" onclick="FormatText('bold', '')" style="cursor: pointer;" align="absmiddle">
|
335
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_italic.gif" title="Italic" onclick="FormatText('italic', '')" style="cursor: pointer;" align="absmiddle">
|
336
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_underline.gif" title="Underline" onclick="FormatText('underline', '')" style="cursor: pointer;" align="absmiddle">
|
337
|
+
<img id="forecolor" src="wwf79-good-forum_posts.asp_files/post_button_colour_pallete.gif" title="Text Colour" onclick="FormatText('forecolor', '')" style="cursor: pointer;" align="absmiddle" border="0">
|
338
|
+
<a href="javascript:openWin('upload_images.asp?MSG=RTE&FID=39','images','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=150')"><img src="wwf79-good-forum_posts.asp_files/post_button_image_upload.gif" alt="Image Upload" align="absmiddle" border="0"></a>
|
339
|
+
<a href="javascript:openWin('upload_files.asp?MSG=RTE&FID=39','files','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=150')"><img src="wwf79-good-forum_posts.asp_files/post_button_file_upload.gif" alt="File Upload" align="absmiddle" border="0"></a> </span> </td>
|
340
|
+
</tr>
|
341
|
+
<tr>
|
342
|
+
<td>
|
343
|
+
<span id="ToolBar2">
|
344
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_undo.gif" onclick="FormatText('undo')" style="cursor: pointer;" title="Undo" align="absmiddle">
|
345
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_redo.gif" onclick="FormatText('redo')" style="cursor: pointer;" title="Redo" align="absmiddle">
|
346
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_left_just.gif" onclick="FormatText('JustifyLeft', '')" style="cursor: pointer;" title="Left Justify" align="absmiddle">
|
347
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_centre.gif" onclick="FormatText('JustifyCenter', '')" style="cursor: pointer;" title="Centre Justify" align="absmiddle" border="0">
|
348
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_right_just.gif" onclick="FormatText('JustifyRight', '')" style="cursor: pointer;" title="Right Justify" align="absmiddle">
|
349
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_or_list.gif" onclick="FormatText('InsertOrderedList', '')" style="cursor: pointer;" title="Ordered List" align="absmiddle" border="0">
|
350
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_list.gif" onclick="FormatText('InsertUnorderedList', '')" style="cursor: pointer;" title="Unordered List" align="absmiddle" border="0">
|
351
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_outdent.gif" onclick="FormatText('Outdent', '')" style="cursor: pointer;" title="Outdent" align="absmiddle">
|
352
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_indent.gif" onclick="FormatText('indent', '')" style="cursor: pointer;" title="Indent" align="absmiddle" border="0">
|
353
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_hyperlink.gif" onclick="FormatText('createLink')" style="cursor: pointer;" title="Add Hyperlink" align="absmiddle" border="0">
|
354
|
+
<img src="wwf79-good-forum_posts.asp_files/post_button_image.gif" title="Add Image" onclick="AddImage()" style="cursor: pointer;" align="absmiddle" border="0">
|
355
|
+
</span>
|
356
|
+
<a href="javascript:openWin('RTE_about.asp','about','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=200')"><img src="wwf79-good-forum_posts.asp_files/post_button_about.gif" title="About Rich Text Editor" style="cursor: pointer;" align="absmiddle" border="0"></a>
|
357
|
+
<iframe id="colourPalette" src="wwf79-good-forum_posts.asp_files/RTE_colour_palette.html" style="visibility: hidden; position: absolute; left: 0px; top: 0px;" frameborder="0" height="165" scrolling="no" width="260"></iframe>
|
358
|
+
</td>
|
359
|
+
</tr>
|
360
|
+
</tbody></table>
|
361
|
+
</td>
|
362
|
+
</tr>
|
363
|
+
</tbody></table>
|
364
|
+
</td>
|
365
|
+
</tr>
|
366
|
+
<tr>
|
367
|
+
<td class="text" align="right" height="61" valign="top" width="15%">Message*:
|
368
|
+
<table align="center" border="0" cellpadding="4" cellspacing="0">
|
369
|
+
<tbody><tr><td class="smText" colspan="3" align="center"><br>Emoticons</td></tr><tr>
|
370
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley1.gif" alt="Smile" onclick="AddSmileyIcon('smileys/smiley1.gif')" style="cursor: pointer;" border="0"></td>
|
371
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley17.gif" alt="Tongue" onclick="AddSmileyIcon('smileys/smiley17.gif')" style="cursor: pointer;" border="0"></td>
|
372
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley2.gif" alt="Wink" onclick="AddSmileyIcon('smileys/smiley2.gif')" style="cursor: pointer;" border="0"></td></tr><tr>
|
373
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley19.gif" alt="Cry" onclick="AddSmileyIcon('smileys/smiley19.gif')" style="cursor: pointer;" border="0"></td>
|
374
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley4.gif" alt="Big smile" onclick="AddSmileyIcon('smileys/smiley4.gif')" style="cursor: pointer;" border="0"></td>
|
375
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley36.gif" alt="LOL" onclick="AddSmileyIcon('smileys/smiley36.gif')" style="cursor: pointer;" border="0"></td></tr><tr>
|
376
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley11.gif" alt="Dead" onclick="AddSmileyIcon('smileys/smiley11.gif')" style="cursor: pointer;" border="0"></td>
|
377
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley9.gif" alt="Embarrassed" onclick="AddSmileyIcon('smileys/smiley9.gif')" style="cursor: pointer;" border="0"></td>
|
378
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley5.gif" alt="Confused" onclick="AddSmileyIcon('smileys/smiley5.gif')" style="cursor: pointer;" border="0"></td></tr><tr>
|
379
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley32.gif" alt="Clap" onclick="AddSmileyIcon('smileys/smiley32.gif')" style="cursor: pointer;" border="0"></td>
|
380
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley7.gif" alt="Angry" onclick="AddSmileyIcon('smileys/smiley7.gif')" style="cursor: pointer;" border="0"></td>
|
381
|
+
<td><img src="wwf79-good-forum_posts.asp_files/smiley18.gif" alt="Ouch" onclick="AddSmileyIcon('smileys/smiley18.gif')" style="cursor: pointer;" border="0"></td></tr>
|
382
|
+
<tr><td colspan="3" align="center"><a href="javascript:openWin('RTE_emoticons_smilies.asp','emot','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=400,height=400')" class="smLink">more...</a></td></tr>
|
383
|
+
</tbody></table></td> <td height="61" valign="top" width="70%">
|
384
|
+
<script language="javascript">
|
385
|
+
//Create an iframe
|
386
|
+
document.write ('<iframe id="message" src="RTE_textbox.asp?mode=reply&POID=1213&ID=322" width="490" height="200" onMouseOver="hideColourPallete()"></iframe>')
|
387
|
+
</script><iframe id="message" src="wwf79-good-forum_posts.asp_files/RTE_textbox.html" onmouseover="hideColourPallete()" height="200" width="490"></iframe>
|
388
|
+
<!-- Display a message for RTE users with JavaScript turned off -->
|
389
|
+
<noscript><span class="bold"><br /><br />JavaScript must be enabled on your web browser for you to post a message in the forum!</span></noscript></td>
|
390
|
+
</tr>
|
391
|
+
<tr>
|
392
|
+
<td align="right" width="92"> </td>
|
393
|
+
<td class="text" valign="bottom" width="508"> <input name="forumCodes" value="True" checked="checked" type="checkbox">Enable <a href="javascript:openWin('forum_codes.asp','codes','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=550,height=400')">Forum Codes</a> to format post
|
394
|
+
</td></tr>
|
395
|
+
<tr><td>
|
396
|
+
<input name="message" value="" type="hidden">
|
397
|
+
<input name="mode" value="reply" type="hidden">
|
398
|
+
<input name="FID" value="39" type="hidden">
|
399
|
+
<input name="TID" value="135" type="hidden">
|
400
|
+
<input name="PID" value="1213" type="hidden">
|
401
|
+
<input name="TPN" value="1" type="hidden">
|
402
|
+
<input name="ThreadPos" value="6" type="hidden">
|
403
|
+
<input name="browser" value="RTE" type="hidden">
|
404
|
+
<input name="sessionID" value="1062909860" type="hidden">
|
405
|
+
</td>
|
406
|
+
<td align="left" height="2" width="70%">
|
407
|
+
<p>
|
408
|
+
<input name="Submit" value="Post Reply" onclick="document.frmAddMessage.message.value = document.getElementById('message').contentWindow.document.body.innerHTML;" tabindex="30" type="submit">
|
409
|
+
<input name="Preview" value="Preview Post" onclick="document.frmAddMessage.message.value = document.getElementById('message').contentWindow.document.body.innerHTML; OpenPreviewWindow('post_preview.asp', document.frmAddMessage);" type="button">
|
410
|
+
<input name="Reset" value="Clear Form" type="reset">
|
411
|
+
</p>
|
412
|
+
</td>
|
413
|
+
</tr>
|
414
|
+
</tbody></table>
|
415
|
+
</td>
|
416
|
+
</tr>
|
417
|
+
</tbody></table>
|
418
|
+
</td>
|
419
|
+
</tr>
|
420
|
+
</tbody></table>
|
421
|
+
</form>
|
422
|
+
<table border="0" cellpadding="3" cellspacing="0" width="98%">
|
423
|
+
<tbody><tr><form></form></tr>
|
424
|
+
<tr>
|
425
|
+
<td>
|
426
|
+
</td>
|
427
|
+
<td align="right"><a href="http://auggiedawg.com/forum/post_message_form.asp?FID=39" target="_self"><img src="wwf79-good-forum_posts.asp_files/new_post.gif" alt="Post New Topic" align="absmiddle" border="0"></a><a href="http://auggiedawg.com/forum/poll_create_form.asp?FID=39" target="_self"><img src="wwf79-good-forum_posts.asp_files/new_poll.gif" alt="Create New Poll" align="absmiddle" border="0"></a>
|
428
|
+
</td>
|
429
|
+
</tr>
|
430
|
+
</tbody></table>
|
431
|
+
<table border="0" cellpadding="1" cellspacing="0" width="98%">
|
432
|
+
<tbody><tr>
|
433
|
+
<td width="30%">
|
434
|
+
<table border="0" cellpadding="2" cellspacing="0" width="380">
|
435
|
+
<tbody><tr>
|
436
|
+
<td>
|
437
|
+
<table align="center" bgcolor="#006699" border="0" cellpadding="1" cellspacing="0" width="300">
|
438
|
+
<tbody><tr>
|
439
|
+
<td>
|
440
|
+
<table align="center" background="" bgcolor="#efefef" border="0" cellpadding="4" cellspacing="0" width="100%">
|
441
|
+
<tbody><tr>
|
442
|
+
<td align="center"> <a href="javascript:openWin('printer_friendly_posts.asp?TID=135','printer_friendly','toolbar=0,location=0,status=0,menubar=1,scrollbars=1,resizable=1,width=640,height=390')"><img src="wwf79-good-forum_posts.asp_files/print_version.gif" alt="Printable version" align="absmiddle" border="0"></a>
|
443
|
+
<a href="javascript:openWin('printer_friendly_posts.asp?FID=39&TID=135','printer_friendly','toolbar=0,location=0,status=0,menubar=1,scrollbars=1,resizable=1,width=640,height=390')" class="smLink">Printable version</a> </td>
|
444
|
+
</tr>
|
445
|
+
</tbody></table>
|
446
|
+
</td></tr>
|
447
|
+
</tbody></table><br><form>
|
448
|
+
<span class="text">Forum Jump</span>
|
449
|
+
<select onchange="ForumJump(this)" name="SelectJumpForum">
|
450
|
+
<option value="" selected="selected">-- Select Forum --</option>
|
451
|
+
<option value="">the winkelshed</option>
|
452
|
+
<option value="forum_topics.asp?FID=39"> - Phone photos</option>
|
453
|
+
<option value="forum_topics.asp?FID=40"> - Are you serious?</option>
|
454
|
+
<option value="">another skate forum?</option>
|
455
|
+
<option value="forum_topics.asp?FID=41"> - Sessions, parties and events.</option>
|
456
|
+
</select></form></td>
|
457
|
+
</tr></tbody></table></td>
|
458
|
+
<td class="smText" align="right" nowrap="nowrap" width="70%">You <span style="font-weight: bold;">can</span> post new topics in this forum<br>You <span style="font-weight: bold;">can</span> reply to topics in this forum<br>You <span style="font-weight: bold;">can</span> delete your posts in this forum<br>You <span style="font-weight: bold;">can</span> edit your posts in this forum<br>You <span style="font-weight: bold;">can</span> create polls in this forum<br>You <span style="font-weight: bold;">can</span> vote in polls in this forum<br></td>
|
459
|
+
</tr>
|
460
|
+
</tbody></table>
|
461
|
+
<br><span class="text" style="font-size: 10px;">Powered by <a href="http://www.webwizforums.com/" target="_blank" style="font-size: 10px;">Web Wiz Forums</a> version 7.91</span><br><span class="text" style="font-size: 10px;">Copyright �2001-2004 <a href="http://www.webwizguide.info/" target="_blank" style="font-size: 10px;">Web Wiz Guide</a></span></div><!-- footer -->
|
462
|
+
</body></html>
|