<!--
var darkened_pics = new Array();
var lighted_pics = new Array();
var clicked_pics = new Array();

function preloadButtonSet(num,dark,light,clicked) {
 darkened_pics[num] = new Image();
 darkened_pics[num].src = dark;
 lighted_pics[num] = new Image();
 lighted_pics[num].src = light;
 clicked_pics[num] = new Image();
 clicked_pics[num].src = clicked;
}

// ***** MODIFY THE VARIABLES BETWEEN THESE COMMENTS *****

// define the image swapping in the following format:
// preloadButtonSet(button_num,dark_button_src,light_button_src,clicked_button_src)

preloadButtonSet(0,"http://www.phoenixhouse.com.au/images/about.jpg","http://www.phoenixhouse.com.au/images/about-on.jpg","http://www.phoenixhouse.com.au/images/about.jpg");
preloadButtonSet(1,"http://www.phoenixhouse.com.au/images/sexual-assault.jpg","http://www.phoenixhouse.com.au/images/sexual-assault-on.jpg","http://www.phoenixhouse.com.au/images/sexual-assault.jpg");
preloadButtonSet(2,"http://www.phoenixhouse.com.au/images/wc-report.jpg","http://www.phoenixhouse.com.au/images/wc-report-on.jpg","http://www.phoenixhouse.com.au/images/wc-report.jpg");
preloadButtonSet(3,"http://www.phoenixhouse.com.au/images/stop-it-now-1.jpg","http://www.phoenixhouse.com.au/images/stop-it-now-on-1.jpg","http://www.phoenixhouse.com.au/images/stop-it-now-1.jpg");
preloadButtonSet(4,"http://www.phoenixhouse.com.au/images/contact.jpg","http://www.phoenixhouse.com.au/images/contact-on.jpg","http://www.phoenixhouse.com.au/images/contact.jpg");

function lighten(num) {
 if (document.images)
  eval("document.button"+num+".src = lighted_pics["+num+"].src;");
 return false;
}
function darken(num) {
 if (document.images)
  eval("document.button"+num+".src = darkened_pics["+num+"].src;");
 return false;
}
function clicked(num) {
 if (document.images) {
  eval("document.button"+num+".src = clicked_pics["+num+"].src;");
  setTimeout("document.button"+num+".src = darkened_pics["+num+"].src;");
 }
 return true;
}


function checkrequired(which) {
var pass=true;
if (document.images) {
for (i=0;i<which.length;i++) {
var tempobj=which.elements[i];
if (tempobj.id.substring(0,8)=="required") {
if (((tempobj.type=="text"||tempobj.type=="textarea")&&
tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&
tempobj.selectedIndex==0)) {
pass=false;
break;
         }
      }
   }
}
if (!pass) {
shortFieldName=tempobj.id.substring(8,30).toUpperCase();
alert("Please make sure the "+shortFieldName+" field was properly completed.");
return false;
}
else
return true;
}

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
// -->
