Saint Michaels Dhtml Issue #1 - the ever popular series is back in dhtml

free web hosting
Open Discussion > CONTRIBUTE > Tutorials

Saint Michaels Dhtml Issue #1 - the ever popular series is back in dhtml

Saint_Michael
well since my series is becoming such a big hit im going to go into dhtml and lets start of with some beginner stuff so to speak.

all scripts are coming from dynamic drive

Ok menu and navagation is a big part of your website now for those who have lots of info the requires the user to scroll down this menu will help out when you scroll the menu goes down with it so heres the script.
QUOTE
<script>
if (!document.layers)
document.write('<div id="divStayTopLeft" style="position:absolute">')
</script>

<layer id="divStayTopLeft">

<!--EDIT BELOW CODE TO YOUR OWN MENU-->
<table border="1" width="130" cellspacing="0" cellpadding="0">
  <tr>
    <td width="100%" bgcolor="#FFFFCC">
      <p align="center"><b><font size="4">Menu</font></b></td>
  </tr>
  <tr>
    <td width="100%" bgcolor="#FFFFFF">
      <p align="left"> <a href="http://www.dynamicdrive.com">Dynamic Drive</a><br>
      <a href="http://www.dynamicdrive.com/new.htm">What's New</a><br>
      <a href="http://www.dynamicdrive.com/hot.htm">What's Hot</a><br>
      <a href="http://www.dynamicdrive.com/faqs.htm">FAQs</a><br>
      <a href="http://www.dynamicdrive.com/morezone/">More Zone</a></td>
  </tr>
</table>
<!--END OF EDIT-->

</layer>


<script type="text/javascript">

/*
Floating Menu script-  Roy Whittle (http://www.javascript-fx.com/)
Script featured on/available at http://www.dynamicdrive.com/
This notice must stay intact for use
*/

//Enter "frombottom" or "fromtop"
var verticalpos="frombottom"

if (!document.layers)
document.write('</div>')

function JSFX_FloatTopDiv()
{
var startX = 3,
startY = 150;
var ns = (navigator.appName.indexOf("Netscape") != -1);
var d = document;
function ml(id)
{
  var el=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
  if(d.layers)el.style=el;
  el.sP=function(x,y){this.style.left=x;this.style.top=y;};
  el.x = startX;
  if (verticalpos=="fromtop")
  el.y = startY;
  else{
  el.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
  el.y -= startY;
  }
  return el;
}
window.stayTopLeft=function()
{
  if (verticalpos=="fromtop"){
  var pY = ns ? pageYOffset : document.body.scrollTop;
  ftlObj.y += (pY + startY - ftlObj.y)/8;
  }
  else{
  var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
  ftlObj.y += (pY - startY - ftlObj.y)/8;
  }
  ftlObj.sP(ftlObj.x, ftlObj.y);
  setTimeout("stayTopLeft()", 10);
}
ftlObj = ml("divStayTopLeft");
stayTopLeft();
}
JSFX_FloatTopDiv();
</script>

The next menu/navagation is good for those who have small sites. this one uses a drop down menu but also gives a brief description on what the link contains so here we go also this comes into 2 parts so read the directions carefully.
QUOTE
<!--Example drop down menu 1-->

<form name="form1">
<select name="select1" size="1" style="background-color:#FFFFD7" onChange="displaydesc(document.form1.select1, thetext1, 'textcontainer1')">
<option selected value="http://www.javascriptkit.com">JavaScript Kit </option>
<option value="http://freewarejava.com">Freewarejava.com</option>
<option value="http://wired.com" target="newwin">Wired News</option>
<option value="http://www.news.com">News.com</option>
<option value="http://www.codingforums.com" target="newwin">Coding Forums</option>
</select>
<input type="button" value="Go"
onClick="jumptolink(document.form1.select1)"><br>
<span id="textcontainer1" align="left" style="font:italic 13px Arial">
</span>
</form>

<!--Example drop down menu 2-->

<form name="form2">
<select name="select2" size="1" style="background-color:#E3FFDF" onChange="displaydesc(document.form2.select2, thetext2, 'textcontainer2')">
<option selected value="http://www.cnn.com">CNN</option>
<option value="http://www.msnbc.com">MSNBC</option>
<option value="http://news.bbc.co.uk">BBC News</option>
<option value="http://www.theregister.com/">The Register</option>
</select>
<input type="button" value="Go"
onClick="jumptolink(document.form2.select2)"><br>
<span id="textcontainer2" align="left" style="font:italic 13px Arial">
</span>
</form>

<!--IMPORTANT: Below script should always follow all of your HTML codes above, and never proceed them-->
<!--To be safe, just add below script at the end of your page-->


<script type="text/javascript">

/***********************************************
* Drop down menu w/ description- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//1) CUSTOMIZE TEXT DESCRIPTIONS FOR LINKS ABOVE
var thetext1=new Array()
thetext1[0]="Comprehensive JavaScript tutorials and over 400+ free scripts"
thetext1[1]="Direct link to hundreds of free Java applets online!"
thetext1[2]="Up to date news on the technology front"
thetext1[3]="News.com- The #1 technology News site."
thetext1[4]="Web Coding and development forums"

/// You may define additional text arrays if you have multiple drop downs:
var thetext2=new Array()
thetext2[0]="CNN- US and World News."
thetext2[1]="MSNBC- NBC News online."
thetext2[2]="BBC News- Updated every minute of every day."
thetext2[3]="TheRegister- Daily IT news."

// Now, see 2) below for final customization step

function displaydesc(which, descriptionarray, container){
if (document.getElementById)
document.getElementById(container).innerHTML=descriptionarray[which.selectedInde
x]
}

function jumptolink(what){
var selectedopt=what.options[what.selectedIndex]
if (document.getElementById && selectedopt.getAttribute("target")=="newwin")
window.open(selectedopt.value)
else
window.location=selectedopt.value
}

//2) Call function displaydesc() for each drop down menu you have on the page
//  This function displays the initial description for the selected menu item
//  displaydesc(name of select menu, name of corresponding text array, ID of SPAN container tag):
//  Important: Remove the calls not in use (ie: 2nd line below if there's only 1 menu on your page)

displaydesc(document.form1.select1, thetext1, 'textcontainer1')
displaydesc(document.form2.select2, thetext2, 'textcontainer2')

</script>[/COLOR]


ok next we are going to into scrollers or marquee news for the website, lettings people know any updates to the website in cool fashion so lets check this one out
QUOTE
<script language="JavaScript1.2">

/*
Cross browser Marquee II- © Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and TOS, visit http://www.dynamicdrive.com
Credit MUST stay intact
*/

//Specify the marquee's width (in pixels)
var marqueewidth="200px"
//Specify the marquee's height
var marqueeheight="150px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=2
//Pause marquee onMousever (0=no. 1=yes)?
var pauseit=1

//Specify the marquee's content
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):

var marqueecontent='<font face="Verdana">Thank you for visiting <a href="http://www.dynamicdrive.com">Dynamic Drive.</a><p>If you find this script useful, please consider linking to us by <a href="../link.htm">clicking here.</a><p>Visit our partner <a href="http://javascriptkit.com">JavaScript Kit</a> for JavaScript tutorials.</font>'


////NO NEED TO EDIT BELOW THIS LINE////////////

marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee, ns_marquee

function populate(){
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
cross_marquee.innerHTML=marqueecontent
actualheight=cross_marquee.offsetHeight
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.top=parseInt(marqueeheight)+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualheight=ns_marquee.document.height
}
lefttime=setInterval("scrollmarquee()",20)
}
window.onload=populate

function scrollmarquee(){

if (iedom){
if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
}
else if (document.layers){
if (ns_marquee.top>(actualheight*(-1)+8))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
write('<div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">')
write('<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
write('</ilayer>')
}
}
}
</script>

this next script is for form this script let user know what fields are important to fill out yeah their are scripts mostly php that make fill out the info before click or your brought back but what they its scriptig at its best. also this is a two step process so read carefully
QUOTE
<script language="JavaScript1.2">

/*
Flashing form element Script- © Dynamic Drive (www.dynamicdrive.com)
For full source code, visit http://www.dynamicdrive.com/
This credit MUST stay intact for use
*/

var flashcolor="red"
var flashinterval=1000 //flash interval in miliseconds (1000=1 sec)

var formcollect=document.getElementsByTagName? document.getElementsByTagName("FORM") : document.all? document.all.tags("FORM") : new Array()
var flashcollect=new Array()

for (i=0; i<formcollect.length; i++){
for (e=0; e<formcollect[i].elements.length; e++){
if (formcollect[i].elements[e].className=="flashit")
flashcollect[flashcollect.length]=formcollect[i].elements[e]
}
}

function flashelements(){
for (f=0; f<flashcollect.length; f++){
if (flashcollect[f].style.color=='')
flashcollect[f].style.color=flashcolor
else
flashcollect[f].style.color=""
}
}

if (flashcollect.length>0)
setInterval("flashelements()",flashinterval)

</script>

the nex part is simple just add the following
QUOTE
Having done the above, you're now ready to give any form element a flashing personality. Just add:

class="flashit"

inside the element's tag you wish to flash. Here's an example:

<form>
<input type="submit" value="Submit" class="flashit">
</form>

this next dhtml script is use for link/tooltip, basical its like a floating text giving you some info on the link a lot of sites use this kind and many other variations of it as well so hers one for you people to chomp down on

first part you had in the <head> tag area
QUOTE
<style type="text/css">

#dhtmlfloatie{
position: absolute;
left: 0;
left: -900px;
filter:alpha(opacity=0);
-moz-opacity:0;
border: 2px solid black;
padding: 5px;
z-index: 100;
}

</style>

<script type="text/javascript">

/***********************************************
* Link Floatie script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

var floattext=new Array()
floattext[0]='- <a href="http://www.javascriptkit.com/cutpastejava.shtml">Free JavaScripts</a><br>- <a href="http://www.javascriptkit.com/javaindex.shtml">JavaScript Tutorials</a><br>- <a href="http://www.javascriptkit.com/dhtmltutors/index.shtml">DHTML/ CSS Tutorials</a><br>- <a href="http://www.javascriptkit.com/jsref/">JavaScript Reference</a><br><div align="right"><a href="javascript:hidefloatie()">Hide Box</a></div>'
floattext[1]='Some other floatie text'

var floatiewidth="250px" //default width of floatie in px
var floatieheight="60px" //default height of floatie in px. Set to "" to let floatie content dictate height.
var floatiebgcolor="lightyellow" //default bgcolor of floatie
var fadespeed=70 //speed of fade (5 or above). Smaller=faster.

var baseopacity=0
function slowhigh(which2){
imgobj=which2
browserdetect=which2.filters? "ie" : typeof which2.style.MozOpacity=="string"? "mozilla" : ""
instantset(baseopacity)
highlighting=setInterval("gradualfade(imgobj)",fadespeed)
}

function instantset(degree){
cleartimer()
if (browserdetect=="mozilla")
imgobj.style.MozOpacity=degree/100
else if (browserdetect=="ie")
imgobj.filters.alpha.opacity=degree
}

function cleartimer(){
if (window.highlighting) clearInterval(highlighting)
}

function gradualfade(cur2){
if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)
cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.1, 0.99)
else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=10
else if (window.highlighting)
clearInterval(highlighting)
}

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function paramexists(what){
return(typeof what!="undefined" && what!="")
}

function showfloatie(thetext, e, optbgColor, optWidth, optHeight){
var dsocx=(window.pageXOffset)? pageXOffset: ietruebody().scrollLeft;
var dsocy=(window.pageYOffset)? pageYOffset : ietruebody().scrollTop;
var floatobj=document.getElementById("dhtmlfloatie")
floatobj.style.left="-900px"
floatobj.style.display="block"
floatobj.style.backgroundColor=paramexists(optbgColor)? optbgColor : floatiebgcolor
floatobj.style.width=paramexists(optWidth)? optWidth+"px" : floatiewidth
floatobj.style.height=paramexists(optHeight)? optHeight+"px" : floatieheight!=""? floatieheight : ""
floatobj.innerHTML=thetext
var floatWidth=floatobj.offsetWidth>0? floatobj.offsetWidth : floatobj.style.width
var floatHeight=floatobj.offsetHeight>0? floatobj.offsetHeight : floatobj.style.width
var winWidth=document.all&&!window.opera? ietruebody().clientWidth : window.innerWidth-20
var winHeight=document.all&&!window.opera? ietruebody().clientHeight : window.innerHeight
e=window.event? window.event : e
floatobj.style.left=dsocx+winWidth-floatWidth-5+"px"
if (e.clientX>winWidth-floatWidth && e.clientY+20>winHeight-floatHeight)
floatobj.style.top=dsocy+5+"px"
else
floatobj.style.top=dsocy+winHeight-floatHeight-5+"px"
slowhigh(floatobj)
}

function hidefloatie(){
var floatobj=document.getElementById("dhtmlfloatie")
floatobj.style.display="none"
}

</script>

next you add this is the <body> tag area
QUOTE
<div id="dhtmlfloatie" ></div>

<a href="#" onMouseover="showfloatie('Web coding and development forums. Get help on JavaScript, CGI, PHP, CSS, and more.', event)" onMouseout="hidefloatie()">Coding Forums</a> | <a href="#" onMouseover="showfloatie(floattext[0], event, '#D9FFD9', 250, 100)">JavaScript Kit</a>

now for this this floating tooltip other options can be done but to make it siomple heres the link for that infoclick here

well that for the day look for issue #2 as well cover more things dhtml

 

 

 


Reply

tom169
I use dynamic drive alot
very good script website

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Recent Queries:-
  1. floatobj.style wmode - 234.51 hr back. (1)
Similar Topics

Keywords : saint, michaels, dhtml, issue, 1, popular, series, back, dhtml

  1. Google Going Back In Time
    (5)
  2. Are There Plans To Bring Ipbgaming Back Up?
    (2)
    Just wondering if anyone knows if IPBGaming is ever going to be remade, or if I should just forget
    about it forever.....
  3. Mich In Arizona
    Back from recent trip to Sun Valley Indian School (2)
    Mich is back. I was gone on a work and witness mission to the Sun Valley Indian School in
    Arizona near Holbrook. We met other team members in Chicago at Union Station, there were 13 of use
    altogether, and took the train out to Winslow. While on the train, I got food poisoning from an egg
    I had boiled at home and taken along. Boy was that awful. Thank heaven there was a physician on
    board, in my car, that diagnosed what I had. We all assumed it was the flu. He gave me some
    medication his wife happened to have along, and I was up and around the next day. Am....
  4. Linux Issue
    on startup (2)
    Ubuntu 8.04 On Startup, I am receiving an error which I am not familiar with. QUOTE User's
    $HOME/.dmrc file is being ignored. This file should be And I can't read the balance of
    the Error Message due to the font size... /sad.gif" style="vertical-align:middle" emoid=":("
    border="0" alt="sad.gif" /> Can someone assist with the diagnosis and debug, please? A rookie
    Linux user, but I am comfortable with the terminal, if I have a good instruction set. Thanks.....
  5. Linux/ Apache /mod_rewrite Issue
    Error when accessing a file (4)
    running on Ubuntu 8.04 with an XAMPP - php5.2.5, Apache 2., etc Getting this error when I try to
    access an sNews CMS which requires mod_rewrite and is installed locally: QUOTE Apache/2.2.8
    (Unix) DAV/2 mod_ssl/2.2.8 OpenSSL/0.9.8e PHP/5.2.5 mod_apreq2-20051231/2.6.0 mod_perl/2.0.2
    Perl/v5.10.0 configured -- resuming normal operations /opt/lampp/htdocs/jim/snews/.htaccess:
    RewriteBase: argument is not a valid URL /opt/lampp/htdocs/jim/snews/.htaccess: RewriteBase:
    argument is not a valid URL Using this link: http://localhost/jim/snews/snews16_ema....
  6. Saint Michael's 4 Year Trapiversary Sig
    (6)
    Well it is official I have been a member of trap17 for four years now and to celebrate I designed my
    4 year sig so enjoy its simplicity and awesomeness. ....
  7. Let's Celebrate Four Years Of Saint Michael
    (22)
    AAAh 4 years, I was in the deserts of Iraq when I was looking for free php hosting. Heck I even
    remembered the website that I found trap17 on, www.free-webhosts.com. It was a month before I would
    leave Iraq, which I would start making my un-quality like posts here on trap. Back when the old
    system was in place when you post count mattered. Jump up to January of 2005 when I was ready to
    get out of active service that I posted a few more time. Of course, it was until April of 2005
    that I would begin my campaign of spamming, which included two runs as moderator which....
  8. Back At Trap17
    (3)
    Well for awhile my brother had been hosting me on his server, but for the past week it's been
    awful, always down, so I've been looking for an alternative. So of course, who else is better
    than trap17? So I am back to posting, and trying to get hosting once again.....
  9. Fourier Transform And Fourier Series Plot In Any Oop Language
    (0)
    Hi, I need to program Fourier Transform and Fourier Series in any OOP language. I'll be using
    C++ since I have worked on it for quite some time now and am really comfortable with it .
    /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" />. I am not
    supposed to use previously built libraries. Kindly help me with how I can perform the intergration
    and differentiations in C++ and How am I suppose to plot it ? ....
  10. Just Came Back From Surgery.
    OMG! (3)
    i just had surgery to get rid of glue ear, but they couldn't get it out of my left due to a
    growth, and i'm going back for another operation in 6 weeks. is it anything to worry about?....
  11. Memory Card Issue
    (5)
    Hey does anyone know how to photos off a memory card? The photos seem to be stuck on mine, i
    can't delete them on the phone and but it will let me delete them while it is plugged into the
    computer. When i delete them on the computer they are removed from the "photos" folder on my memory
    card, but when i put the memory card back into my phone or the computer they show up there... I
    can't add anything to the card either... Anyone know how to fix this The card is not in locked
    mode.....
  12. Can I Go Back To School?
    (help and/or advice) (5)
    Okay, I'm Currently 17 Female. I Have Been Out Of School About 3 Years, Basically Making It All
    My High School Years. An Well I Don't Know If I Can Go Back To School Or Not, Will They Hold Me
    Back? Will I Have To Take This Up With The Board OF Education? Will I Get In Trouble Or
    Something?...I Really Don't Know What To Do, And My Parent Doesn't Know Either. So Can
    Anyone Help Or Give Me Advice What To Do? I'm Really Lost And I Need My Diploma, So I Can Go To
    College. Thank You In Advance!....
  13. I'm Back!
    bthaxor is in the house... (6)
    hey trapsters! most trap17 regulars would know who i am: at one point last year and the start
    of this year, i literally spent 24/7 on trap17. then, you may have noticed that around the start of
    february, i was no longer here. no, i have not committed the ultimate crime of finding another web
    host - and why on earth would i, considering this is the best free web hosting? the reason for my
    temporary departure was that i had a series of lengthy and important exams, which will decide
    whether i can do the elective subjects i have selected for next year or not, and coul....
  14. It Went Well For A While
    MySQL problem back in all its glory. (5)
    Some time ago I had a stubborn problem when trying to access one of the interactive pages on my
    website and getting the following error: QUOTE Warning: fopen() : open_basedir restriction in
    effect. File(include/errors.xml) is not within the allowed path(s):
    (/home/mrdee:/usr/lib/php:/usr/local/lib/php:/tmp) in
    /home/mrdee/public_html/admin/include/commonfunctions.php on line 682 Warning:
    fopen(include/errors.xml) : failed to open stream: Operation not permitted in
    /home/mrdee/public_html/admin/include/commonfunctions.php on line 682 Cannot open XML data file:
    incl....
  15. Ftp Issue?
    Solve? (1)
    I can not access to my FTP server, and I am sure the data which I am entering. The FTP manager says
    that wrong data, password or username. But, I am sure that it is the correct ones, the ones I used
    ti access the forum. Please, help me somebody.....
  16. I Can && Cannot Acces My Website
    Confusing issue. (5)
    I am a hosted member in trap17 and my domain is www.karunya.cc . I have been not able to access my
    website for few days and i had PM'd the admin and he provided me great support,but still i have
    some confusion , so please anyone help me . My domain was now accessible using my true IP . On the
    other hand if i use a Proxy i am able to access my website , so i had given my true IP's
    220.225.140.98, 210.212.244.4 to Xisto to check whether they are in the IP ban List in Xisto
    firewall , the internet im using is provided by my college and im sure here there is not ....
  17. Help Me, Lost Skill Suddenly
    Can you help me to get me back fit? (7)
    This may sounds full of lie, but it's true and I need help About a month ago, I was a
    competitive player, at least in the server I always play. But somehow, around 2 or 3 weeks ago, I
    don't know why I feel like I lost my skill almost completely. My KDR (Kill Death Ratio, or kill
    divide by death) usually around 2 or higher, but now, I only can get less than 0.5. Even I
    remembered 3 days ago, I get 3 kills and 15 deaths. This is somehow frustrating me. I've
    practice harder (by vs bots, OMG! and going at deathmatch server), but when I arrive there, at
    the se....
  18. Overpopulation
    Overpopulation a growing issue, how should we deal with it? (19)
    Overpopulation is a growing issue in our world that must be dealt with. But how? Animals and Humans
    are both organisms in this world however the things we do to animals to control their population in
    general wouldn't be considered humane; that is if the same methods were used on humans. Our
    world is growing exponentially and very quickly, million of people are born each day. Of course many
    people die each day too but our population is growing faster than it is declining. As a human
    species we have developed many different ways with dealing with overpopulation. For ....
  19. [voting] I Challenge Saint_michael To A Battle
    1v1 Nintendo Abstract (15)
    The rules are simple but precise: Rules Theme: Abstract Size: 400 x 100 Render:Only one, Nintendo
    series only Animation: Optional Due: Whenever Other:Nothing Here is my entry: Best 4 out of 7
    will be the winner.....
  20. Movie Review - Beowulf
    by Saint Michael (5)
    Well I just seen Beowulf and I have to say it was 100 times better then the Christopher Lambert
    version, still wondered why I got that movie. Anywoo if you ever read the story to Beowulf you know
    are several versions to the story, and from what I saw it seems like a part of the original and
    another version. It's hard to tell since its been years since I read the story although I think
    this version is like 95% original version from the studio who produced it because of some of the
    stuff that happen in this movie. I will state OMG on Angelina Jolie /xd.gif" style="....
  21. What Is Your Favourite Tv Series?
    (45)
    My favorite TV series is LOST which I can't wait till the new season begins. I like it because
    of well made characters which get uncovered in their flashbacks where you learn about their lives
    before the plane crashed on The Island and how did it change them. I recently started to watch
    Heroes series, which is my second most favourite TV series. It's about humans which have some
    super powers like flying, tissue regeneration, mind reading, teleportation and time bending, seeing
    of future and others. The series tells the story of how they found out that they are ....
  22. Drops Of Jupiter Spoof By Yours Truly :d
    Now that he's back in the atmosphere, his hair is soaked with ashl (2)
    So for a week that me and my friend becca are putting together to honor someone who's name i
    will not mention /wink.gif" style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif" /> I
    spoofed drops of Jupiter: Now he’s back in earth’s atmosphere His hair is soaked with Ashley’s
    tears hey hey He rocks the hawk and isn’t afraid To show us all it’s okay to change hey hey Since
    the return of his stay on fox There’s no reason to watch that old black box hey hey But tell me did
    you sail across the sky Did you make it to Hollywood to see the lights all faded And....
  23. My Thoughts On Why Internet Explorer Is So Popular.
    (15)
    I see little point in the "What browser do you use?" topic except to discuss the pros and cons of
    different browsers. It's obvious that most people will use Internet Explorer because almost all
    computers that are bought for people or sold to them are pre-loaded with Some version of Windows, in
    which the only browser is Microsoft's own, Internet Explorer. And since a big proportion of
    first-time computers users are not so computer savvy and do not become so because they do not really
    need to, they will use what they are given. In the internet Cafe I am typing....
  24. Cigoth V.s Saint Michael -voting
    (9)
    Cigoth v.s Saint Michael -VOTING Voting to 7, ok? /smile.gif" style="vertical-align:middle"
    emoid=":)" border="0" alt="smile.gif" /> CIGOTH: SAINT MICHAEL: Those who have voted
    must mention why they have voted, or else the vote shall not count.....
  25. Would You Go On A Trip Into Deep Space?
    Even if you knew you were never coming back... (29)
    As the topic says, if you had the opportunity to go on a deep space mission but you knew it was a
    one way trip, would you do it? Lets say fro arguments sake, that you would see the following
    sights: The moon Mars Jupiter and its moons Saturn and the outer planets. I would like to see what
    everyones opinions are, I would personally do it if I had the opportunity.....
  26. Splinter Cell Series Vs. Metal Gear Solid Series
    Opinions? (12)
    As a fan of both series, I wanted to get a take on your opinions. In my opinion, I favor Splinter
    Cell over Metal Gear. Although Metal Gear came out way before Splinter Cell, and may have
    undoubtedly influenced Splinter Cell in one way or another, SC's game mechanics appeals to me
    more. Some may argue Splinter Cell is a bit slow and boring, but that's what I like about the
    game. The thought of sneaking behind guards, utilizing sweet gadgets, pulling off impressive
    maneuvers, becoming the shadow itself, ultimately draws me in over Metal Gear. Don't get me wron....
  27. Study: Tumor Risk From Cell Phones
    A real issue, or just myths (14)
    Researchers at the Swedish National Institute for Working Life issued a report this week disputing
    two earlier studies that claimed cell phone use has no correlation to increased brain tumor risk.
    The Swedish study found that long-term mobile phone exposure could raise the chance of developing
    cancer. In January, a four-year study performed by the London-based Institute of Cancer Research
    and three British universities found that talking on a cell phone had no effect on tumor rates. That
    research included 966 people with glioma brain tumors and 1,716 healthy respondents....
  28. Favourite Versus Game Series
    Street Fighter Vs X-Men (Related) (4)
    My 3 favourites has to be Marvel Super Heros Vs. Street Fighter, Marvel Vs. Capcom and Marvel Vs.
    Capcom 2. And also who's your favourite character to play as in those games (Regular or Hidden)
    my favourites are :Cyber Akuma, Onslaught and Apocolypse. I haven't figured out how to play as
    Abyss yet. But I hope someone does know how to play as him.....
  29. What Is Your Favorite Books/series
    Come on! Tell us! Lol... (30)
    Alrighty. This is kinda weird for me to post this because I really don't read that much but
    there are a few that I truly love! First of all, I really like "The Davinci Code" and "Angels
    and Demon's" Both outstanding books! Great plot! Unexpected endings! Kept moving to
    keep me interested! Very good! If you havent read either of them for any reason, religious
    or not, I would suggest reading them! They are great. Now my truly favorite trilogy... or at
    least soon to be trilogy, is the "Domain" trilogy by Steve Alten. Basically, its this....
  30. Who Thinks Trap 17 Is Th Best Server?
    Who ever thinks replie back! (9)
    Man you what i think Trap 17 has good and strong Terms of Service that is good But i think they have
    the best hosting program that i love about and it's the best! You know if you do not have
    money right? And you what a good and madly good forum that is so much money you can not afford and
    you wont it now! But Looking and thinkingno money! Some how you end up at trap17 the free
    hosting server that provides free hosting forums and upgrades isn't that so cool?! Tell me
    it is! /cool.gif' border='0' style='vertical-align:middle' alt='cool.gif' />....

    1. Looking for saint, michaels, dhtml, issue, 1, popular, series, back, dhtml

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for saint, michaels, dhtml, issue, 1, popular, series, back, dhtml

*MORE FROM TRAP17.COM*
Similar
Google Going Back In Time
Are There Plans To Bring Ipbgaming Back Up?
Mich In Arizona - Back from recent trip to Sun Valley Indian School
Linux Issue - on startup
Linux/ Apache /mod_rewrite Issue - Error when accessing a file
Saint Michael's 4 Year Trapiversary Sig
Let's Celebrate Four Years Of Saint Michael
Back At Trap17
Fourier Transform And Fourier Series Plot In Any Oop Language
Just Came Back From Surgery. - OMG!
Memory Card Issue
Can I Go Back To School? - (help and/or advice)
I'm Back! - bthaxor is in the house...
It Went Well For A While - MySQL problem back in all its glory.
Ftp Issue? - Solve?
I Can && Cannot Acces My Website - Confusing issue.
Help Me, Lost Skill Suddenly - Can you help me to get me back fit?
Overpopulation - Overpopulation a growing issue, how should we deal with it?
[voting] I Challenge Saint_michael To A Battle - 1v1 Nintendo Abstract
Movie Review - Beowulf - by Saint Michael
What Is Your Favourite Tv Series?
Drops Of Jupiter Spoof By Yours Truly :d - Now that he's back in the atmosphere, his hair is soaked with ashl
My Thoughts On Why Internet Explorer Is So Popular.
Cigoth V.s Saint Michael -voting
Would You Go On A Trip Into Deep Space? - Even if you knew you were never coming back...
Splinter Cell Series Vs. Metal Gear Solid Series - Opinions?
Study: Tumor Risk From Cell Phones - A real issue, or just myths
Favourite Versus Game Series - Street Fighter Vs X-Men (Related)
What Is Your Favorite Books/series - Come on! Tell us! Lol...
Who Thinks Trap 17 Is Th Best Server? - Who ever thinks replie back!
advertisement



Saint Michaels Dhtml Issue #1 - the ever popular series is back in dhtml



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE