

<!-- 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

<!--Happy Fingers
   var submitted = 0;
   function isSubmit() {
   if(submitted == 0)
   return true;
   else 
   alert("Your transaction is being processed. \n Please be Patient");
   return false;
   }

<!--Data Checks
   function isFilled(id,type,label) {
   var elm=document.getElementById(id);
   if (type == "Text") {
   if (elm.value != "" && elm.value != null && elm.value.indexOf("<") == "-1"){
   return true;
   }else{
   alert(label + " is a Required field. (No HTML)")
   elm.focus();
   return false;
   }
   }
   else if (type == "Option") {
   var iIndx = elm.selectedIndex
   if (iIndx != 0){
   return true;
   }else{
   alert(label + " is a Required field. \n Please Pick from the Pull Down List.")
   elm.focus();
   return false;
   }
   }
   else if (type == "Radio") {
   if (elm.checked != false){
   return true;
   }else{
   alert(label + " is a Required field. \n Please Select an Option.")
   //elm.focus();
   return false;
   }
   }
   else if (type == "Check") {
   if (elm.checked == true){
   return true;
   }else{
   elm.focus();
   return false;
   }
   }
   else if (type == "Number") {
   if (elm.value && elm.value >= 0){
   return true;
   }else{
   alert(label + " requires numbers only. \n Please re-enter")
   elm.focus();
   elm.select();
   return false;
   }
   }
   else if (type == "Email") {
   if (elm.value.indexOf("@") != "-1" &&
       elm.value.indexOf(".") != "-1" &&
       elm.value != ""){
   return true;
   }else{
   alert("Please enter a vaild Email Address in " + label + " \n (eg. screenname@aol.com  No Spaces)");
   elm.focus();
   return false;
   }
   }
   }

   function isLength(id,len,label) {
   var elm=document.getElementById(id);
   if (elm.value.length >= len)
   return true;
   else
   alert(label + " must be at \n least " + len + " characters.")
   elm.focus();
   return false;
   }

   function doReplace(id) {
   var elm=document.getElementById(id);
   var str = elm.value;
   var newstr = str.replace(/'/g, "''");
   var newstr = newstr.replace(/</g, "-");
   elm.value = newstr
   }

   function onAction(act)  {
   Action = act;
   }
	 

<!-- Search Ready
function isReadySrch(form) {
   if (isFilled(form.keyword,"Text","Search Keyword") == false) {
   return false;
   }
return true;
}



// End Javascript -->