2 corrections
Code:
<form action="http://www.vbulletin.com/forum/search.php" method="post" name="vbform">
should be:
Code:
<form action="http://www.vbulletin.com/forum/search.php" method="post" name="vbform" target="_blank">
Code:
<td><type="text" class="bginput" name="query" size="30" value="" tabindex="1" /> <select name="forumchoice[]" tabindex="3">
should be:
Code:
<td><input type="text" class="bginput" name="query" size="30" value="" tabindex="1" /> <select name="forumchoice[]" tabindex="3">
You missed the
input in input type
Satan