// JavaScript Document
if (document.images)	{
var imglist = new Array('bookmark','client-login','contact','home','membership','packages','press-room','services','site-map','tell-a-friend','testimonials');
var imgs = new Array(); var count;
	for (count=0; count<imglist.length; count++)
	{imgs[count]=new Image(); imgs[count].src="i/nav/" + imglist[count] + "-on.gif";}
      }
// Flip it on
function roll(imgName) {
	if (document.images) { document[imgName].src = "i/nav/" + imgName + "-on.gif" }
}
// Flip it off
function out(imgName) {
	if (document.images)  {	document[imgName].src = "i/nav/" + imgName + ".gif"	}
}
var popUpWin=0;
function newWin(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
