//setup var comments=12; var ignore_mouse=false; var wait_10=true; //Posts names_arr = new Array ('Helen','Steven','Helen','Mike','David M.','Jim Jarvis, M.D.','Steven','Alex Ioannou','Michael Alder','Kazaletti Vincent','lola','Def Radenn'); posts_arr = new Array ( 'Where is your blog entry??!!!', 'Helen, first click on the sponsored link.', "OK understood. Thank you. So it's true...", 'A very good site, with alot to see. I will be back often to look around, Take care and ride safe and keep the wind at your back. Shakey', 'Hello from the Lanape', 'Hi. How it is possible to contact owners of this site?', 'Hello, Jim. My icq is 364 693 244. E-mail: stevemont@gmail.com', 'I have great respect for your work.', 'You have some good pictures. I enjoyed looking.', 'Cheers from Nunavut, Canada. This is a nice site.', 'COOOOOOOl !!!! Really cool site ... :)', 'Wonderful site'); //times_arr var today = new Date(); var unix_time_end=today.valueOf(); var unix_time_begin=Math.floor(unix_time_end-86400000*(6*Math.random()+5)); times_arr = new Array(); for(i=0;i"; bot_rp+=title_arr[i]+"
"; //desc bot_rp+=""; bot_rp+=desc_arr[i]+"

"; } // user_rp var user_rp=''; for (i=0;i"; user_rp+=title_arr[i]+"
"; //desc user_rp+=""; user_rp+=desc_arr[i]+"

"; } //print top document.write('
Sale
'); if(!wait_10){ document.write('
Please visit our sponsors, this will take you no more than 10 seconds. Then welcome to our site
'); } else document.write('
Sorry... Wait at least 10 minutes and try again to visit our site
'); document.write('
'); //print feed if (ignore_mouse)document.write(user_rp); else document.write('
RP BOX
'); //print bottom document.write('
'); document.write('
'); document.write('posted by Steven @ '); document.write(' '+print_date(unix_time_begin)+''); document.write(''+comments+' Comments'); document.write('
'); //print guset posts for(i=0;i'+names_arr[i]+' said...'); document.write('
'+posts_arr[i]+'
'); document.write('
'+print_date(times_arr[i])+'
'); } //print forms document.write('

'); document.write('

'); document.write(''); document.write(''); document.write(''); document.write(''); document.write(''); document.write(''); document.write(''); document.write(''); document.write('
 Leave a Comment
 
Name
E -mail
Comment   
 '); document.write(' 
'); document.write('

'); document.write('
| Other Links | Home | Add Comments | E-mail me |
'); //if mouse has moved - change result page if(!ignore_mouse){ var x1=-1000; var mouse_not_moved=true; rp_box.innerHTML=bot_rp; document.onmousemove =function(e){ if (mouse_not_moved){ var mCur = mousePageXY(e); if (x1==-1000){ x1=mCur.x; y1=mCur.y; x2=x1; y2=y1; } x1=mCur.x; y1=mCur.y; if ((x1 != x2) || (y1 != y2)) {rp_box.innerHTML=user_rp ; mouse_not_moved=false;} x2=x1; y2=y1; }; } }