		<!--
			var whatCart = "";
			var whatType = "";
			var whatQuan = "";

			function dollarSign( amt ) {
			   return "$" + format( amt, 2);
			}                              

			function format( amt, places) {
				var temp = "" + Math.round(eval(amt) * Math.pow(10,places));
				while(temp.length <= places) { 
			  		temp= "0" + temp;
				}
				var point = temp.length - places;
				return temp.substring( 0, point ) + "." + temp.substring(point, temp.length);
			}                                                                                                                             

			function computeSub() {
				var value="00"
				for( var i= 1 ; i <= 4 ; i++) {
					value = parseFloat(value) + parseFloat(document.forms[i].total.value);
				}
				value=format( value,2);
				return value;
			}

			B=document.all;C=document.layers;

			function moveContainer(N,DX,DY) {
				c=(B)?B[N].style :C[N];c.left=DX;c.top=DY;
			}

			function start() {
				document.forms[0].elements[0].focus();
				document.forms[0].elements[0].select();
			}

			T1 = new Array("../images/common/skull.gif",20,20,"../images/common/skull.gif",20,20,"../images/common/skull.gif",20,20,"../images/common/skull.gif",20,20,"../images/common/skull.gif",20,20,"../images/common/skull.gif",20,20,"../images/common/skull.gif",20,20,"../images/common/skull.gif",20,20,"../images/common/skull.gif",20,20);
			nos = parseInt(T1.length/3);rate=50;ie5fix1=0;ie5fix2=0;

			for(i=0;i<nos;i++) {
				createContainer("CUR"+i,i*10,i*10,i*3+1,i*3+2,"","<img src='"+T1[i*3]+"' width="+T1[(i*3+1)]+" height="+T1[(i*3+2)]+" border=0>");
			}

			function createContainer(N,Xp,Yp,W,H,At,HT,Op,St) {
				with(document) {
					write((!B)?"<layer id='"+N+"' left="+Xp+" top="+Yp+" width="+W+" height="+H : "<div id='"+N+"'"+" style='position:absolute;left:"+Xp+"; top:"+Yp+"; width:"+W+"; height:"+H+"; ");
					if(St) {
						if(C)
							write(" style='");write(St+";' ");
					} else 
						write((B)?"'":"");
					write((At)? At+">" : ">");write((HT) ? HT : "");
					if(!Op)
						closeContainer(N)
				}
			}

			function closeContainer() {
				document.write((B)?"</div>":"</layer>");
			}

			function getXpos(N) {
				return (B)?parseInt(B[N].style.left):C[N].left;
			}

			function getYpos(N) {
				return (B)?parseInt(B[N].style.top):C[N].top;
			}

			function cycle() {
				if(document.all&&window.print) {
					ie5fix1=document.body.scrollLeft;ie5fix2=document.body.scrollTop;
				}
				for (i=0;i<(nos-1);i++)
					moveContainer("CUR"+i,getXpos("CUR"+(i+1)),getYpos("CUR"+(i+1)));
			}

			function newPos(e) {
				moveContainer("CUR"+(nos-1),(B)?event.clientX+ie5fix1:e.pageX+2,(B)?event.clientY+ie5fix2:e.pageY+2);
			}

			if (document.layers) {
				document.captureEvents(Event.MOUSEMOVE)
				document.captureEvents(Event.MOUSEDOWN);
			}


			document.onmousemove=newPos;
			document.onmousedown=click;

			setInterval("cycle()",rate);
		// -->
