WHY JESUS IS BETTER THAN SANTA CLAUS

Santa lives at the North Pole ... JESUS is everywhere.
Santa rides in a sleigh ...
JESUS rides on the wind and walks on the water.
Santa comes but once a year ...
JESUS is an ever present help.
Santa fills your stockings with goodies ...
JESUS supplies all your needs.
Santa comes down your chimney uninvited ...
JESUS stands at your door and knocks,
and then enters your heart When invited.
You have to wait in line to see Santa ...
JESUS is as close as the mention of His name.
Santa lets you sit on his lap ...
JESUS lets you rest in His arms.
Santa doesn't know your name,
all he can say is "Hi little boy or girl, what's your name?" ...
JESUS knew our name before we did.
Not only does He know our name, He knows our address too.
He knows our history and future
and He even knows how many hairs are on our heads.
Santa has a belly like a bowl full of jelly ...
JESUS has a heart full of love.
All Santa can offer is HO HO HO ...
JESUS offers health, help and hope.
Santa says "You better not cry" ...
JESUS says "Cast all your cares on me for I care for you."
Santa's little helpers make toys ...
JESUS makes new life, mends wounded hearts,
repairs broken homes and builds mansions.
Santa may make you chuckle but ...
JESUS gives you joy that is your strength.
While Santa puts gifts under your tree ...
JESUS became our gift and died on a tree.
It's obvious there is really no comparison.
We need to remember WHO Christmas is all about.
We need to put Christ back in CHRISTmas,
Jesus is still the reason for the season.
Yes, Jesus is better,
he is even better than Santa Claus.

The True Reason For The Season

Have a wonderful CHRISTmas!


Other Christian Christmas Sites to Enjoy:

Happy Birthday, Jesus

No Greater Light

The Christmas List


E-Mail Me

My Homepage

// Snow Effect Javascript // copyright 19th November 2004, 20th July 2006 by Stephen Chapman // permission to use this Javascript on your web page is granted // provided that all of the code in this script (including these // comments) is used without any alteration // you can change the number of snow flakes if you like var num_flakes = 10; var snowflakes = new Array("snowflake.gif","snowflake1.gif"); // DOM test var aDOM = 0, ieDOM = 0, nsDOM = 0; var stdDOM = document.getElementById; if (stdDOM) aDOM = 1; else {ieDOM = document.all; if (ieDOM) aDOM = 1; else { var nsDOM = ((navigator.appName.indexOf('Netscape') != -1) && (parseInt(navigator.appVersion) ==4)); if (nsDOM) aDOM = 1;}} function findDOM(objectId, wS) { if (stdDOM) return wS ? document.getElementById(objectId).style: document.getElementById(objectId); if (ieDOM) return wS ? document.all[objectId].style: document.all[objectId]; if (nsDOM) return document.layers[objectId]; } // window size tests function findLivePageWidth() {return window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body != null ? document.body.clientWidth :700;}function findLivePageHeight() {return window.innerHeight != null? window.innerHeight : document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body != null? document.body.clientHeight :500;} function posX() {return typeof window.pageXOffset != 'undefined' ? window.pageXOffset:document.documentElement.scrollLeft? document.documentElement.scrollLeft:document.body.scrollLeft? document.body.scrollLeft:0;} function posY() {return typeof window.pageYOffset != 'undefined' ? window.pageYOffset:document.documentElement.scrollTop? document.documentElement.scrollTop: document.body.scrollTop?document.body.scrollTop:0;} // make it snow var speed = 50;var movw = new Array();var movh = new Array();var move = new Array();var stepw = new Array();var steph = new Array();var posw = new Array();var posh = new Array();var dir = new Array();var winWidth;var winHeight; function startSnow() {winWidth = findLivePageWidth()-75;winHeight = findLivePageHeight()-50; for (var i = 0; i < num_flakes; i++){move[i] = 0;movh[i] = 12+ Math.random()*2;movw[i] = 11+ Math.random()*4;posw[i] = Math.random()*(winWidth-35)+12;posh[i] = Math.random()*winHeight; stepw[i] = 0.02 + Math.random()/10;steph[i] = 0.7 + Math.random();dir[i] = (Math.random()>0.5)?1:-1;document.write('

');}setTimeout("moreSnow()", speed);} function moreSnow() {for (var i = 0; i < num_flakes; i++) {if (posh[i] > winHeight-50) {posw[i] = 10+ Math.random()*(winWidth-movw[i]-30);posh[i] = 0;dir[i]=(Math.random()<0.5)?1:-1;stepw[i] = 0.02 + Math.random()/9;steph[i] = 1.3 + Math.random();} move[i] += stepw[i] *dir[i]; if (Math.abs(move[i]) > 3) {dir[i]=-dir[i]; posh[i]+=Math.abs(movh[i]*move[i]);posw[i]+=movw[i]*move[i]; move[i]=0;} objstyle = findDOM('snow'+i,1); objstyle.left = (posX()+posw[i] + movw[i]*move[i])+'px'; objstyle.top = (posY()+posh[i] + movh[i]*(Math.abs(Math.cos(move[i])+move[i])))+'px';objstyle.visibility = 'visible';} setTimeout("moreSnow()", speed);}