Tulee varmaan aikas pitkä reply, mutta mikäs se tällanen on? Editoin viestiä, niin jysähti ruutu täyteen koodia. Mää tosta mitään tajua, mutta tollastako te kirjottelette huvikseen?
// -------------------------------------------------------------
function email() {
if (helpstat) {
alert("Email Tag Turns an email address into a mailto hyperlink.\n\nUSE #1:
someone\@anywhere.com \nUSE #2:
link text");
}
else if (basic) {
AddTxt="";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="
" + theSelection + "";
theSelection = '';
}
AddText(AddTxt);
}
else {
txt2=prompt("Text to be shown for the link. Leave blank if you want the url to be shown for the link.","");
if (txt2!=null) {
txt=prompt("URL for the link.","mailto:");
if (txt!=null) {
if (txt2=="") {
AddTxt="
"+txt+"";
AddText(AddTxt);
} else {
AddTxt="
"+txt2+"";
AddText(AddTxt);
}
}
}
}
}
function showsize(size) {
if (helpstat) {
alert("Size Tag Sets the text size. Possible values are 1 to 6.\n1 being the smallest and 6 the largest.\n\nUSE: [size="+size+"]This is size "+size+" text[/size="+size+"]");
} else if (basic) {
AddTxt="[size="+size+"][/size="+size+"]";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="[size="+size+"]" + theSelection + "[/size="+size+"]";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("Text to be size "+size,"Text");
if (txt!=null) {
AddTxt="[size="+size+"]"+txt+"[/size="+size+"]";
AddText(AddTxt);
}
}
}
function bold() {
if (helpstat) {
alert("Bold Tag Makes the enlosed text bold.\n\nUSE:
This is some bold text");
} else if (basic) {
AddTxt="";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="
" + theSelection + "";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("Text to be made BOLD.","Text");
if (txt!=null) {
AddTxt="
"+txt+"";
AddText(AddTxt);
}
}
}
function italicize() {
if (helpstat) {
alert("Italicize Tag Makes the enlosed text italicized.\n\nUSE:
This is some italicized text");
} else if (basic) {
AddTxt="";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="
" + theSelection + "";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("Text to be italicized","Text");
if (txt!=null) {
AddTxt="
"+txt+"";
AddText(AddTxt);
}
}
}
function quote() {
if (helpstat){
alert("Quote tag Quotes the enclosed text to reference something specific that someone has posted.\n\nUSE:
");
} else if (basic) {
AddTxt="
";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="
Lainaus:
|
quote:" + theSelection + "
|
";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("Text to be quoted","Text");
if(txt!=null) {
AddTxt="
";
AddText(AddTxt);
}
}
}
function showcolor(color) {
if (helpstat) {
alert("Color Tag Sets the text color. Any named color can be used.\n\nUSE: ["+color+"]This is some "+color+" text[/"+color+"]");
} else if (basic) {
AddTxt="["+color+"][/"+color+"]";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="["+color+"]" + theSelection + "[/"+color+"]";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("Text to be "+color,"Text");
if(txt!=null) {
AddTxt="["+color+"]"+txt+"[/"+color+"]";
AddText(AddTxt);
}
}
}
function center() {
if (helpstat) {
alert("Centered tag Centers the enclosed text.\n\nUSE: <center>This text is centered</center>");
} else if (basic) {
AddTxt="<center></center>";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="<center>" + theSelection + "</center>";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("Text to be centered","Text");
if (txt!=null) {
AddTxt="<center>"+txt+"</center>";
AddText(AddTxt);
}
}
}
function hyperlink() {
if (helpstat) {
alert("Hyperlink Tag \nTurns an url into a hyperlink.\n\nUSE:
http://www.anywhere.com\n\nUSE:
link text");
} else if (basic) {
AddTxt="";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="
" + theSelection + "";
theSelection = '';
}
AddText(AddTxt);
} else {
txt2=prompt("Text to be shown for the link.\nLeave blank if you want the url to be shown for the link.","");
if (txt2!=null) {
txt=prompt("URL for the link.","http://");
if (txt!=null) {
if (txt2=="") {
AddTxt="
"+txt+"";
AddText(AddTxt);
} else {
AddTxt="
"+txt2+"";
AddText(AddTxt);
}
}
}
}
}
function image() {
if (helpstat){
alert("Image Tag Inserts an image into the post.\n\nUSE:

");
} else if (basic) {
AddTxt="[img][/img]";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="[img] theSelection [/img]";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("URL for graphic","http://");
if(txt!=null) {
AddTxt="[img]txt[/img]";
AddText(AddTxt);
}
}
}
function showcode() {
if (helpstat) {
alert("Code Tag Blockquotes the text you reference and preserves the formatting.\nUsefull for posting code.\n\nUSE: <pre id=code>This is formated text</pre id=code>");
} else if (basic) {
AddTxt=" <pre id=code> </pre id=code>";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt=" <pre id=code>" + theSelection + "</pre id=code>";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("Enter code","");
if (txt!=null) {
AddTxt="<pre id=code>"+txt+"</pre id=code>";
AddText(AddTxt);
}
}
}
function list() {
if (helpstat) {
alert("List Tag Builds a bulleted, numbered, or alphabetical list.\n\nUSE:
");
} else if (basic) {
AddTxt="
";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="
";
theSelection = '';
}
AddText(AddTxt);
} else {
type=prompt("Type of list Enter \'A\' for alphabetical, \'1\' for numbered, Leave blank for bulleted.","");
while ((type!="") && (type!="A") && (type!="a") && (type!="1") && (type!=null)) {
type=prompt("ERROR! The only possible values for type of list are blank 'A' and '1'.","");
}
if (type!=null) {
if (type=="") {
AddTxt="[list]";
} else {
AddTxt="
- ";
}
txt="1";
while ((txt!="") && (txt!=null)) {
txt=prompt("List item Leave blank to end list","");
if (txt!="") {
AddTxt+="
- "+txt+"";
}
}
if (type=="") {
AddTxt+="
";
} else {
AddTxt+="[/list="+type+"]";
}
AddText(AddTxt);
}
}
}
function underline() {
if (helpstat) {
alert("Underline Tag Underlines the enclosed text.\n\nUSE: [u]This text is underlined</u>");
} else if (basic) {
AddTxt="[u]</u>";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="[u]" + theSelection + "</u>";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("Text to be Underlined.","Text");
if (txt!=null) {
AddTxt="[u]"+txt+"</u>";
AddText(AddTxt);
}
}
}
function showfont(font) {
if (helpstat){
alert("Font Tag Sets the font face for the enclosed text.\n\nUSE:
The font of this text is "+font+"");
} else if (basic) {
AddTxt="[font="+font+"][/font="+font+"]";
theSelection = document.selection.createRange().text; // Get text selection
if (theSelection)
{
// Add tags around selection
AddTxt="[font="+font+"]" + theSelection + "[/font="+font+"]";
theSelection = '';
}
AddText(AddTxt);
} else {
txt=prompt("Text to be in "+font,"Text");
if (txt!=null) {
AddTxt="[font="+font+"]"+txt+"[/font="+font+"]";
AddText(AddTxt);
}
}
}
</SCRIPT>HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Sun, 11 Jun 2006 12:21:52 GMT
Content-Length: 57717
Content-Type: text/html
Cache-control: private
<script language="JavaScript">
function ChangePage(){document.PageNum.submit();}
function OpenPreview()
{
// var curCookie = "strMessagePreview=" + escape(document.PostTopic.Message.value);
// document.cookie = curCookie;
// popupWin = window.open('pop_preview.asp?sigi=yes', 'preview_page', 'scrollbars=yes,width=750,height=450')
document.PostTopic.action='new_preview.asp';
document.PostTopic.target="_blank";
document.PostTopic.submit();
document.PostTopic.action='post_info.asp';
document.PostTopic.target="_self";
}
</script>
<html>
<head>
<meta name="varmennusid" value="691"><meta name="copyright" content="This code is Copyright (C) 2000-01 Michael Anderson and Pierre Gorissen">
<script language="JavaScript">
<!-- hide from JavaScript-challenged browsers
function test(s){
var d = s.options[s.selectedIndex].value;
if (d!="") {
if(d=='/ratemy/rate_my_menu.html')
{
// credits to bono
openWindow10(d);
s.selectedIndex=0;
return;
}
if (d=='/logout4.asp' || d=='/logout3.asp' || d=='/logout2.asp' || d=='/logout.asp')
{
window.top.location.href = d;
return;
}
if (d=='/chatside.asp' || d=='/chatside2.asp' || d=='/chatside3.asp' || d=='/chatside4.asp')
{
window.top.location.href = d;
return;
}
window.top.location.href = d;
}
s.selectedIndex=0;
}
function verify_user() {
var accountField = document.forms[0].elements["Name"];
var passwordField = document.forms[0].elements["Password"];
var account = accountField.value;
var password = passwordField.value;
if (account=="" || account=="Username" || password=="")
{
alert("Please enter your username and password!");
}
else
{
alert("Sisäänkirjautuminen kestää 10-20 sekuntia. Paina OK ja odota kiltisti...\nLogin takes 10-20 seconds. Press OK and wait patiently...");
document.logini.submit();
}
}
function openWindow(url) {
popupWin = window.open(url,'new_page','width=400,height=400')
}
function openWindow2(url) {
popupWin = window.open(url,'new_page','width=400,height=450')
}
function openWindow3(url) {
popupWin = window.open(url,'new_page','width=400,height=450,s crollbars=yes')
}
function openWindow4(url) {
popupWin = window.open(url,'new_page','width=400,height=525')
}
function openWindow5(url) {
popupWin = window.open(url,'new_page','width=450,height=525,s crollbars=yes,toolbars=yes,menubar=yes,resizable=y es')
}
function openWindow6(url) {
popupWin = window.open(url,'new_page','width=550,height=370')
}
function openWindow7(url) {
popupWin = window.open(url,'new_page','width=800,height=400,s crollbars=yes,toolbars=yes,resizable=yes')
}
function openWindow8(url) {
popupWin = window.open(url,'_blank','width=810,height=650')
}
function openWindow9(url) {
popupWin = window.open(url,'_blank','width=1014,height=740,re sizable=yes')
}
function openWindow10(url) {
// credits to bono
popupWin = window.open(url,'_blank','width=260,height=590')
}
// done hiding -->
</script>
<style type=text/css>
<!--
a:link {color:deepskyblue;text-decoration:none}
a:visited {color:deepskyblue;text-decoration:none}
a:hover {color:whitesmoke;text-decoration:blink}
input.radio {background: midnightblue; color:#000000}
.header {background-image:url(headerback.gif);background-repeat:repeat}
.header2 {background-image:url(testbar.gif);background-repeat:repeat}
.topheader {background-image:url(topheaderback.gif);background-repeat:repeat}
.width1 TEXTAREA { width: 90% }
.width2 TEXTAREA { width: 100% }
.width3 INPUT { width: 471 }
-->
</style>
</head>
<body bgColor="black" text="lightskyblue" link="deepskyblue" aLink="red" vLink="red">
<a name="top"></a><font face="Verdana, Arial, Helvetica">
<table align="center" border="0" cellPadding="0" cellSpacing="0" width="95%">
<tr>
<td align="left" valign="top" width="100%">
<table border="0" cellPadding="2" cellSpacing="0">
<tr>
<td NOWRAP align="left"><font face="Verdana, Arial, Helvetica" size="1">
<a target="_blank" href="default.asp"><img border=0 src="uplog.jpg"></a>
</font></font></td>
<form name="logini" target="_parent" action="/ThePalsta/topic.asp" method="post" id=form2 name=form2>
<INPUT type="hidden" name="Method_Type" value="logout">
</form>
<form name="quicksearch" action="search.asp?mode=DoIt" method="post" target="_blank">
<td width="100%" align="left">
<table>
<tr>
<td NOWRAP align="left">
<select name="keio" style="background-color: black;color:white;border: black; font-family: Arial, 'Sans Serif'; font-size: 10pt;" ONCHANGE="test(this);" size="1">
<option value="" style="text-decoration:none;background-color:#000000;">Menu for kivinen:</option>
<optgroup value="" style="background-color:#000090;" label="Forum Shortcuts">
<option style="background-color:#000050" VALUE="default.asp">Home</option>
<option style="background-color:#000050" VALUE="http://mail.petrisimolin.com">Mail</option>
<option style="background-color:#000050" VALUE="http://vah.is-a-geek.net/cams/">Webcams</option>
<option style="background-color:#000050" VALUE="search.asp">Search</option>
<option style="background-color:#000050" VALUE="/ThePalsta/forum.asp?FORUM_ID=185">Rakas päiväkirja</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=18">Adult Section</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=14">General talk</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=15">Games</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=21">Sports</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=9">Internet</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=6">Out of this World</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=5">Multimedia</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=8">Programming</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=4">Technology</option>
<option style="background-color:#000050" VALUE="default.asp?CAT_ID=2">Forumtalk</option>
<option style="background-color:#000050" VALUE="/logout.asp">Exit</option>
</optgroup>
<optgroup style="background-color:#000090" label="Forum features">
<option style="background-color:#000050" VALUE="active.asp">Active Topics</option>
<option style="background-color:#000050" VALUE="enh_active.asp">Enh. Active Topics</option>
<option style="background-color:#000050" VALUE="active_polls.asp">Active Polls</option>
<option style="background-color:#000050" VALUE="members.asp">Memberlist</option>
</optgroup>
<optgroup style="background-color:#000090" label="Personal features">
<option style="background-color:#000050" VALUE="pm_view.asp">Private Messages</option>
<option style="background-color:#000050" VALUE="pop_profile.asp?mode=display&id=691">Vie w Your Profile</option>
<option style="background-color:#000050" VALUE="pop_profile.asp?mode=Edit">Edit Your Profile</option>
</optgroup>
<optgroup style="background-color:#000090" label="Chat features">
<option style="background-color:#000050" VALUE="/chatside.asp">Professional's Chat</option>
<!-- <option style="background-color:#000050" VALUE="/chatside2.asp">The Trivia Room</option>
<option style="background-color:#000050" VALUE="/chatside3.asp">RPG Room</option>
<option style="background-color:#000050" VALUE="/chatside4.asp">Nasty Adult Chat</option> -->
<option style="background-color:#000050" VALUE="/config.asp">Configure</option>
<option style="background-color:#000050" VALUE="/Vanhat.asp">Old Messages</option>
<option style="background-color:#000050" VALUE="/Ohjeet.asp">Help</option>
</optgroup>
<optgroup style="background-color:#000090" label="Miscellaneous">
<option style="background-color:#000050" VALUE="/ThePalsta/virtuashop.asp">VirtuaShop</option>
<option style="background-color:#000050" VALUE="/ThePalsta/hall_of_fame.asp">Hall of Fame</option>
<option style="background-color:#000050" VALUE="/ThePalsta/best_writers.asp">Best authors</option>
<option style="background-color:#000050" VALUE="/ThePalsta/best_supporters.asp">Best Supporters</option>
<!-- <option style="background-color:#000050" VALUE="http://static.petrisimolin.com/djjokke.html">Radio Station</option> -->
<option style="background-color:#000050" VALUE="links.asp">Links Manager</option>
<option style="background-color:#000050" VALUE="bomberman.asp">Games</option>
<option style="background-color:#000050" VALUE="/ratemy/rate_my_menu.html">Rate My Thing</option>
</optgroup>
</select>
</td>
<td valign="top" NOWRAP align="right">
<small><a target="_blank" href="/ThePalsta/search.asp">Search:</a> </small><input type="text" name="Search" size="10" value="">
</td>
<td valign="middle" NOWRAP align="center">
<INPUT src=button_go.gif height=25 alt="Quick Search" type="image" value="search" border=0>
</td>
<input type="hidden" name="andor" value=" and ">
<input type="hidden" name="Forum" value="0">
<input type="hidden" name="SearchMessage" value="1">
<input type="hidden" name="SearchDate" value="0">
<input type="hidden" name="SearchMember" value="0">
<input type="hidden" name="SearchMax" value="30">
</tr>
</table>
</td>
</form>
</table>
</td>
<td align="left">
<nobr>
<a href="JavaScript

penWindow9('/ThePalsta/3towers.asp')"><small>3 Towers</small> </a>
<!-- <a href="JavaScript

penWindow8('http://www.baarimestari.com:2345/wb/')"><small>Visu@lizeIT</small> </a> </nobr> -->
</td>
<td align="right">
<a href="JavaScript
:document.logini.submit()">< small>Logout</small></a>
</td>
</tr>
</table>
<table align="center" border="0" cellPadding="0" cellSpacing="0" width="95%">
<tr>
<td>
<script language="JavaScript">
<!--
function jumpTo(s) {if (s.selectedIndex != 0) location.href = s.options[s.selectedIndex].value;return 1;}
// -->
</script>
<table border="0" width="100%">
<tr>
<td width="50%" align="left" nowrap><font face="Verdana, Arial, Helvetica" size="2">
<img src="icon_folder_open.gif" height=15 width=15 border="0"> <a href="default.asp">All Forums</a><br>
<img src="icon_bar.gif" height=15 width=10 border="0">
<img src="icon_folder_open.gif" height=15 width=15 border="0">
<a href="default.asp?CAT_ID=24">Off-Road</a><br>
<img src="icon_blank.gif" height=15 width=15 border="0"><img src="icon_bar.gif" height=15 width=15 border="0"><img src="icon_folder_open.gif" height=15 width=15 border="0"> <a href="FORUM.asp?FORUM_ID=234">O/M/V Varaosat ja tarvikkeet</a>
<br>
<img src="icon_blank.gif" height=15 width=15 border="0"><img src="icon_blank.gif" height=15 width=15 border="0"><img src="icon_bar.gif" height=15 width=15 border="0"><img src="icon_folder_open_topic.gif" height=15 width=15 border="0"> M: HJ61 lukkoakselit
</font></td>
<td align="center" width="50%">
<br><font face="Verdana, Arial, Helvetica" size="2">
<a href="post.asp?method=Topic&FORUM_ID=234&CAT_ID=24 &Forum_Title=O%2FM%2FV+Varaosat+ja+tarvikkeet"> <img src="new_topic_x.gif" alt="New Topic" border=0></a>
<a href="post.asp?poll=1&method=Topic&FORUM_ID=234&CA T_ID=24&Forum_Title=O%2FM%2FV+Varaosat+ja+tarvikke et"><img src="new_poll_x.gif" alt="New Poll" border=0></a>
<a href="post.asp?method=Reply&TOPIC_ID=27408&FORUM_I D=234&CAT_ID=24&Forum_Title=O%2FM%2FV+Varaosat+ja+ tarvikkeet&Topic_Title=M%3A+HJ61+lukkoakselit"> <img src="reply_x.gif" alt="Reply" border=0></a><br>
<br><a href="JavaScript

penWindow5('pop_printer_friendly .asp?TOPIC_ID=27408')"><img border="0" src="printer_x.gif"></a>
</font>
</td>
</tr>
</table>
<title>M: HJ61 lukkoakselit</title>
<table border="0" width="100%" cellspacing="0" cellpadding="0" align="center">
<tr>
<td NOWRAP bgColor="black" align=left >
<font face="Verdana, Arial, Helvetica" size="1"><small>Rating is not allowed for this topic.</small></font>
</td>
<td NOWRAP align="right" colspan=2 width=100%>
</td>
</tr>
<table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" align="center">
<tr>
<td bgcolor="black">
<table border="0" width="100%" cellspacing="1" cellpadding="4">
<tr>
<td align="center" bgcolor="midnightblue" width="100" nowrap><b><font face="Verdana, Arial, Helvetica" size="2" color="mintcream">Author</font></b></td>
<td align="center" bgcolor="midnightblue" width="100%" ><b><font face="Verdana, Arial, Helvetica" size="2" color="mintcream">Topic</font></b></td>
<!-- <td align=right bgcolor="midnightblue"></td>-->
</tr>
<tr>
<td NOWRAP bgcolor="midnightblue" valign="top">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2">
<a href="pop_profile.asp?mode=display&id=3747">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>Repro</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Hakkeri</small></font>
<br><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=3747">
<img src="user_ratings_3.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
<img src="http://static.petrisimolin.com/gallery/data/images/Repro-112112070243f0cbabb1f90.gif" align="absmiddle" width="100" height="100" title="Cached: 100 X 100" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small> </small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>1588 Posts</small></font>
</td>
<td bgcolor="midnightblue" colspan="2" valign="top">
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 24/05/2006 : 09:17:52</font>
<a href="pop_profile.asp?mode=display&id=3747">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=Repro"> ;<img src="icon_pm.gif" border="0" width="15" height="15" alt="Send Repro a Private Message" align="absmiddle" hspace="6"></a>
<a href="http://www.eimihikaa.com" target="_blank"><img src="icon_homepage.gif" height=15 width=15 alt="Visit Repro's Homepage" border="0" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=TopicQuote&TOPIC_ID=27408&FO RUM_ID=234&CAT_ID=24&Forum_Title=O%2FM%2FV+Varaosa t+ja+tarvikkeet&Topic_Title=M%3A+HJ61+lukkoakselit "><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2">
Otsikossahan se jo lukee,välityksistä ei hajua.<BR>Hinta 1200 euroa</P><P>Kaikki on mahdollista, paitsi pyörö-ovesta hiihtäminen.<BR><a href="http://offroad.eimihikaa.com" target="_blank">WIRMA</a><BR><a href="http://www.montenegrooffroad.com" target="_blank">Montenegros</a>#10
</font>
<!-- <font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Otsikossahan se jo lukee,välityksistä ei hajua.<BR>Hinta 1200 euroa</P><P>Kaikki on mahdollista, paitsi pyörö-ovesta hiihtäminen.<BR><a href="http://offroad.eimihikaa.com" target="_blank">WIRMA</a><BR><a href="http://www.montenegrooffroad.com" target="_blank">Montenegros</a>#10</font></td>-->
</tr>
<tr>
<td NOWRAP bgcolor="darkblue" valign="top">
<a href="pop_profile.asp?mode=display&id=3747">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>Repro</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Hakkeri</small></font>
<br><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=3747">
<img src="user_ratings_3.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
<img align="center" src="http://static.petrisimolin.com/gallery/data/images/Repro-112112070243f0cbabb1f90.gif" align="absmiddle" width="100" height="100" title="Cached: 100 X 100" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small> </small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>1588 Posts</small></font>
</td>
<td bgcolor="darkblue" colspan="2" valign="top">
<a name="210540"></a>
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 26/05/2006 : 12:26:47</font>
<a href="pop_profile.asp?mode=display&id=3747">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=Repro"> ;<img src="icon_pm.gif" border="0" width="15" height="15" alt="Send Repro a Private Message" align="absmiddle" hspace="6"></a>
<a href="http://www.eimihikaa.com" target="_blank"><img src="icon_homepage.gif" height=15 width=15 alt="Visit Repro's Homepage" border="0" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=210540&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Joko kaikilla on lukot?</P><P>Kaikki on mahdollista, paitsi pyörö-ovesta hiihtäminen.<BR><a href="http://offroad.eimihikaa.com" target="_blank">WIRMA</a><BR><a href="http://www.montenegrooffroad.com" target="_blank">Montenegros</a>#10<a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="midnightblue" valign="top">
<a href="pop_profile.asp?mode=display&id=3631">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>nuppi</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Tosimies</small></font>
<br><img src=icon_star_blue.gif border=0><img src=icon_star_blue.gif border=0><img src=icon_star_blue.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=3631">
<img src="user_ratings_2.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
<img align="center" src="/ThePalsta/avatars/15216.gif" align="absmiddle" width="50" height="50" title="Cached: 50 X 50" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Finland</small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>990 Posts</small></font>
</td>
<td bgcolor="midnightblue" colspan="2" valign="top">
<a name="210549"></a>
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 26/05/2006 : 12:55:48</font>
<a href="pop_profile.asp?mode=display&id=3631">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="JavaScript

penWindow('pop_mail.asp?id=3631' )"><img src="icon_email.gif" height=15 width=15 alt="Email Poster" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=nuppi"> ;<img src="icon_pm.gif" border="0" width="15" height="15" alt="Send nuppi a Private Message" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=210549&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Multa puuttuu ainaki mut puuttuu kyllä 1200 euroaki<img src=icon_smile_big.gif border=0 align=middle></P><P>vaihto <a href="http://www.nettimoto.com/336956" target="_blank">
www.nettimoto.com/336956</a> ???</P><P>____________________________________ _____________________________________________</P><P>Läheltä saa mennä muttei osua!</P><P>Edited by - nuppi on 26/05/2006 12:59:04<a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="darkblue" valign="top">
<a href="pop_profile.asp?mode=display&id=3747">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>Repro</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Hakkeri</small></font>
<br><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=3747">
<img src="user_ratings_3.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
<img align="center" src="http://static.petrisimolin.com/gallery/data/images/Repro-112112070243f0cbabb1f90.gif" align="absmiddle" width="100" height="100" title="Cached: 100 X 100" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small> </small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>1588 Posts</small></font>
</td>
<td bgcolor="darkblue" colspan="2" valign="top">
<a name="210552"></a>
<img src="icon_mi_22.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 26/05/2006 : 12:59:56</font>
<a href="pop_profile.asp?mode=display&id=3747">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=Repro"> ;<img src="icon_pm.gif" border="0" width="15" height="15" alt="Send Repro a Private Message" align="absmiddle" hspace="6"></a>
<a href="http://www.eimihikaa.com" target="_blank"><img src="icon_homepage.gif" height=15 width=15 alt="Visit Repro's Homepage" border="0" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=210552&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Ei ne varmaan pankkiin hyväksy moottorikelkkoja luulisin...</P><P>Kaikki on mahdollista, paitsi pyörö-ovesta hiihtäminen.<BR><a href="http://offroad.eimihikaa.com" target="_blank">WIRMA</a><BR><a href="http://www.montenegrooffroad.com" target="_blank">Montenegros</a>#10<a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="midnightblue" valign="top">
<a href="pop_profile.asp?mode=display&id=3631">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>nuppi</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Tosimies</small></font>
<br><img src=icon_star_blue.gif border=0><img src=icon_star_blue.gif border=0><img src=icon_star_blue.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=3631">
<img src="user_ratings_2.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
<img align="center" src="/ThePalsta/avatars/15216.gif" align="absmiddle" width="50" height="50" title="Cached: 50 X 50" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Finland</small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>990 Posts</small></font>
</td>
<td bgcolor="midnightblue" colspan="2" valign="top">
<a name="210554"></a>
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 26/05/2006 : 13:04:43</font>
<a href="pop_profile.asp?mode=display&id=3631">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="JavaScript

penWindow('pop_mail.asp?id=3631' )"><img src="icon_email.gif" height=15 width=15 alt="Email Poster" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=nuppi"> ;<img src="icon_pm.gif" border="0" width="15" height="15" alt="Send nuppi a Private Message" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=210554&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Eihän sitä koskaa tiiä...</P><P>____________________________________ _____________________________________________</P><P>Läheltä saa mennä muttei osua!<a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="darkblue" valign="top">
<a href="pop_profile.asp?mode=display&id=3747">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>Repro</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Hakkeri</small></font>
<br><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=3747">
<img src="user_ratings_3.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
<img align="center" src="http://static.petrisimolin.com/gallery/data/images/Repro-112112070243f0cbabb1f90.gif" align="absmiddle" width="100" height="100" title="Cached: 100 X 100" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small> </small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>1588 Posts</small></font>
</td>
<td bgcolor="darkblue" colspan="2" valign="top">
<a name="210555"></a>
<img src="icon_mi_33.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 26/05/2006 : 13:07:02</font>
<a href="pop_profile.asp?mode=display&id=3747">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=Repro"> ;<img src="icon_pm.gif" border="0" width="15" height="15" alt="Send Repro a Private Message" align="absmiddle" hspace="6"></a>
<a href="http://www.eimihikaa.com" target="_blank"><img src="icon_homepage.gif" height=15 width=15 alt="Visit Repro's Homepage" border="0" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=210555&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Nii voishan sitä tietty käyä kysymässä, mut miulla on PIENI epäilys ettei ne huolis...</P><P>Kaikki on mahdollista, paitsi pyörö-ovesta hiihtäminen.<BR><a href="http://offroad.eimihikaa.com" target="_blank">WIRMA</a><BR><a href="http://www.montenegrooffroad.com" target="_blank">Montenegros</a>#10<a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="midnightblue" valign="top">
<a href="pop_profile.asp?mode=display&id=5955">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>Jyki_BJ40</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Pyrkyri</small></font>
<br><img src=icon_star_cyan.gif border=0><img src=icon_star_cyan.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=5955">
<img src="user_ratings_3.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
<img align="center" src="/thepalsta/avatar_uploads/8053083.GIF" align="absmiddle" width="100" height="75" title="Cached: 100 X 75" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Finland</small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>100 Posts</small></font>
</td>
<td bgcolor="midnightblue" colspan="2" valign="top">
<a name="210658"></a>
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 26/05/2006 : 20:50:53</font>
<a href="pop_profile.asp?mode=display&id=5955">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=Jyki_BJ40 "><img src="icon_pm.gif" border="0" width="15" height="15" alt="Send Jyki_BJ40 a Private Message" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=210658&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Pitäsköhän ostaa...no taidan ehkä kuiteskii tyytyä takaperään tilattavaan lok raittiin ku noi on nii kauhian kalliit.</P><P>Montenegros #25<BR>-------------------------------<BR>Toyota Landcruiser BJ40 33/12.5</P><P>Edited by - Jyki_BJ40 on 26/05/2006 20:51:38<a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="darkblue" valign="top">
<a href="pop_profile.asp?mode=display&id=5012">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>ILE</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Newbie</small></font>
<br><img src=icon_star_green.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=5012">
<img src="user_ratings_5.gif" height="9" width="53" border="0"></small></font></a>
<br><center>
<img align="center" src="/thepalsta/avatar_uploads/8533322.GIF" align="absmiddle" width="72" height="54" title="Cached: 72 X 54" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Finland</small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>28 Posts</small></font>
</td>
<td bgcolor="darkblue" colspan="2" valign="top">
<a name="210671"></a>
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 26/05/2006 : 21:28:28</font>
<a href="pop_profile.asp?mode=display&id=5012">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="JavaScript

penWindow('pop_mail.asp?id=5012' )"><img src="icon_email.gif" height=15 width=15 alt="Email Poster" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=ILE">& lt;img src="icon_pm.gif" border="0" width="15" height="15" alt="Send ILE a Private Message" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=210671&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Eikös ne akselit mahukkaan patukan alle,<BR>vai kuis niitä jo hävittämässä olet?</P><P> <a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="midnightblue" valign="top">
<a href="pop_profile.asp?mode=display&id=3747">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>Repro</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Hakkeri</small></font>
<br><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=3747">
<img src="user_ratings_3.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
<img align="center" src="http://static.petrisimolin.com/gallery/data/images/Repro-112112070243f0cbabb1f90.gif" align="absmiddle" width="100" height="100" title="Cached: 100 X 100" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small> </small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>1588 Posts</small></font>
</td>
<td bgcolor="midnightblue" colspan="2" valign="top">
<a name="210845"></a>
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 27/05/2006 : 12:48:03</font>
<a href="pop_profile.asp?mode=display&id=3747">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=Repro"> ;<img src="icon_pm.gif" border="0" width="15" height="15" alt="Send Repro a Private Message" align="absmiddle" hspace="6"></a>
<a href="http://www.eimihikaa.com" target="_blank"><img src="icon_homepage.gif" height=15 width=15 alt="Visit Repro's Homepage" border="0" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=210845&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Ei oo patukkaa kuin housuissa enää eikä niitä sinne viiti laittaa.<img src=icon_smile_big.gif border=0 align=middle></P><P>Kaikki on mahdollista, paitsi pyörö-ovesta hiihtäminen.<BR><a href="http://offroad.eimihikaa.com" target="_blank">WIRMA</a><BR><a href="http://www.montenegrooffroad.com" target="_blank">Montenegros</a>#10<a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="darkblue" valign="top">
<a href="pop_profile.asp?mode=display&id=0">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>Anonymous</a>
</b></font>
<br><center>
<img align="center" src="/thepalsta/avatar_uploads/232602.JPG" align="absmiddle" width="88" height="100" title="Cached: 88 X 100" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Finland</small></font>-->
</td>
<td bgcolor="darkblue" colspan="2" valign="top">
<a name="214342"></a>
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 09/06/2006 : 12:30:46</font>
<a href="pop_profile.asp?mode=display&id=0"><im g src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="JavaScript

penWindow('pop_mail.asp?id=0')"& gt;<img src="icon_email.gif" height=15 width=15 alt="Email Poster" border="0" align="absmiddle" hspace="6"></a>
<a href="http://www.petrisimolin.com" target="_blank"><img src="icon_homepage.gif" height=15 width=15 alt="Visit Anonymous's Homepage" border="0" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=214342&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> oisko numeroo et vois soittaa ja kysellä niistä peristä?</P><P><b>Note! This message was posted anonymously!</b><a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="midnightblue" valign="top">
<a href="pop_profile.asp?mode=display&id=3747">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>Repro</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Hakkeri</small></font>
<br><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0><img src=icon_star_red.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=3747">
<img src="user_ratings_3.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
<img align="center" src="http://static.petrisimolin.com/gallery/data/images/Repro-112112070243f0cbabb1f90.gif" align="absmiddle" width="100" height="100" title="Cached: 100 X 100" border=0 hspace="0" >
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small> </small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>1588 Posts</small></font>
</td>
<td bgcolor="midnightblue" colspan="2" valign="top">
<a name="214798"></a>
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 11/06/2006 : 12:34:54</font>
<a href="pop_profile.asp?mode=display&id=3747">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=Repro"> ;<img src="icon_pm.gif" border="0" width="15" height="15" alt="Send Repro a Private Message" align="absmiddle" hspace="6"></a>
<a href="http://www.eimihikaa.com" target="_blank"><img src="icon_homepage.gif" height=15 width=15 alt="Visit Repro's Homepage" border="0" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=214798&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Numero on 0505334330 mutta ne akselit on vielä kiinni ja varatutkin vielä.</P><P>Kaikki on mahdollista, paitsi pyörö-ovesta hiihtäminen.<BR><a href="http://offroad.eimihikaa.com" target="_blank">WIRMA</a><BR><a href="http://www.montenegrooffroad.com" target="_blank">Montenegros</a>#10<a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="darkblue" valign="top">
<a href="pop_profile.asp?mode=display&id=3654">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"><b>PeteTurku</a>
</b></font>
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Tosimies</small></font>
<br><img src=icon_star_blue.gif border=0><img src=icon_star_blue.gif border=0><img src=icon_star_blue.gif border=0>
<br>
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small><a href="pop_profile.asp?mode=display&id=3654">
<img src="user_ratings_3.gif" height="9" width="53" border="0"></small></font></a>
<br>
<acronym title="This member is an offroader"><img border="0" width="15" height="15" src="http://www.uta.fi/~ji61489/icon_group_offroad.gif"></acronym>
<br><center>
</center>
<!-- <br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>Finland</small></font>-->
<br><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1"><small>282 Posts</small></font>
</td>
<td bgcolor="darkblue" colspan="2" valign="top">
<a name="214810"></a>
<img src="icon_posticon.gif" border="0" hspace="3"><font color="lightskyblue" face="Verdana, Arial, Helvetica" size="1">Posted - 11/06/2006 : 13:46:55</font>
<a href="pop_profile.asp?mode=display&id=3654">< ;img src="icon_profile.gif" height=15 width=15 alt="Show Profile" border="0" align="absmiddle" hspace="6"></a>
<a href="JavaScript

penWindow('pop_mail.asp?id=3654' )"><img src="icon_email.gif" height=15 width=15 alt="Email Poster" border="0" align="absmiddle" hspace="6"></a>
<a href="privatesend.asp?method=Topic&mname=PeteTurku "><img src="icon_pm.gif" border="0" width="15" height="15" alt="Send PeteTurku a Private Message" align="absmiddle" hspace="6"></a>
<a href="post.asp?method=ReplyQuote&REPLY_ID=214810&T OPIC_ID=27408&FORUM_ID=234&CAT_ID=24&Forum_Title=O %2FM%2FV+Varaosat+ja+tarvikkeet&Topic_Title=M%3A+H J61+lukkoakselit&M="><img src="icon_reply_topic.gif" height=15 width=15 alt="Reply with Quote" border="0" align="absmiddle" hspace="6"></a>
<hr noshade size="1">
<font color="lightskyblue" face="Verdana, Arial, Helvetica" size="2"> Mimmosissa kohdissa noissa on kartaanit( eli oikeella vaiko vasemmalla tai jopa keskellä)???</P><P>Ai mää vai turuust<a href="#top"><img src="icon_go_up.gif" height=15 width=15 border="0" align="right" alt="Go to Top of Page"></a></font></td>
</tr>
<tr>
<td NOWRAP bgcolor="midnightblue" valign="top">
<a href="pop_profile.asp?mode=display&id=691">
<font color="lightskyblue" face="V