//testi.js /*All code herein Copyright 2006 jeblaisdell.com Licensed for use on teamsurvivortristate.org only. */

function xc(a) {b='s'+a;if (document.getElementById(a).style.height == '200px') {document.getElementById(a).style.height = "105px";  document.getElementById(b).style.display = 'none'; }else { document.getElementById(a).style.height = "200px"; document.getElementById(b).style.display = 'block';}}
function fshad(fid,ap,ss,col1,sss,col2,bcol) {a = document.getElementById(fid);b = document.createElement('span');b.style.position = 'absolute';b.style.top = parseInt(a.style.top) + 1 + 'px';b.style.left = parseInt(a.style.left) + 1 + 'px';b.style.fontSize = a.style.fontSize;b.style.color = bcol;b.style.fontFamily = a.style.fontFamily;b.style.zIndex = a.style.zIndex - 1;b.innerHTML = a.innerHTML;document.getElementById(ap).appendChild(b);if (ss==1) {b = document.createElement('span');b.style.position = 'absolute';b.style.top = parseInt(a.style.top) + 2 + 'px';b.style.left = parseInt(a.style.left) + 2 + 'px';b.style.fontSize = a.style.fontSize;b.style.fontFamily = a.style.fontFamily;b.style.color = col1;b.style.zIndex = a.style.zIndex - 2;b.innerHTML = a.innerHTML;document.getElementById(ap).appendChild(b);}if (sss==1) {b = document.createElement('span');b.style.position = 'absolute';b.style.top = parseInt(a.style.top) - 1 + 'px';b.style.left = parseInt(a.style.left) - 1 + 'px';b.style.fontSize = a.style.fontSize;b.style.fontFamily = a.style.fontFamily;b.style.color = col2;b.style.zIndex = a.style.zIndex - 2;b.innerHTML = a.innerHTML;document.getElementById(ap).appendChild(b);}}fshad('test1','testhead',1,'#336633',1,'#314159','#333366');