

<!-- Begin Javascript

// MY SCRIPTS

// Use this area to add new scripts that you need for your site

function openWindow(url,w,h) {

    var wint = (screen.height - h) / 2;

    var winl = (screen.width - w) / 2;

    insWin = window.open(url,"infoWin",'toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,scrollbars=1,top='+wint+',screenY='+wint+',left='+winl+',screenX='+winl+',width='+w+',innerWidth='+w+',height='+h+',innerHeight='+h);

   }



function borderit(which,color){

//if IE 4+ or NS 6+

if (document.all||document.getElementById)

	  {which.style.borderColor=color}

}



/***********************************************

* Bullet Link script- (c) 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

***********************************************/



//Write out bullet image. Change "mybullet.gif" below to desired image path:

var bulletimg='<img id="bullet" style="position:absolute; left: -300px" src="/mybullet.gif">'



var bulletoffX=2 //Set horizontal offset of bullet image from link's root. (ie: -2 or 5)

var bulletoffY=5 //Set vertical offset of bullet image from link's root. (ie: -2 or 5)



function caloffset(what, offsettype){

var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;

var parentEl=what.offsetParent;

while (parentEl!=null){

totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;

parentEl=parentEl.offsetParent;

}

return totaloffset;

}



function displaybullet(linkobj){

bulletobj.style.left=caloffset(linkobj, "left")-bulletobj.width-bulletoffX+"px"

bulletobj.style.top=caloffset(linkobj, "top")-bulletoffY+linkobj.offsetHeight/3+"px"

bulletobj.style.visibility="visible"

}



function modifylinks(){

bulletobj=document.all? document.all.bullet : document.getElementById("bullet")

for (i=0; i<document.links.length; i++){

if (document.links[i].className=="ddbullet"){

document.links[i].onmouseover=function(){displaybullet(this)}

document.links[i].onmouseout=function(){bulletobj.style.visibility="hidden"}

}

}

}



if (document.all || document.getElementById)

document.write(bulletimg)



if (window.addEventListener)

window.addEventListener("load", modifylinks, false)

else if (window.attachEvent)

window.attachEvent("onload", modifylinks)

else if (document.getElementById || document.all)

window.onload=modifylinks





// End Javascript -->