<!--
j=document.images;
if (j) {
	button1=new Image(); button1.src="/images/button1off.gif";
	button1h=new Image(); button1h.src="/images/button1on.gif";
	button2=new Image(); button2.src="/images/button2off.gif";
	button2h=new Image(); button2h.src="/images/button2on.gif";
	button3=new Image(); button3.src="/images/button3off.gif";
	button3h=new Image(); button3h.src="/images/button3on.gif";
	button4=new Image(); button4.src="/images/button4off.gif";
	button4h=new Image(); button4h.src="/images/button4on.gif";
	button5=new Image(); button5.src="/images/button5off.gif";
	button5h=new Image(); button5h.src="/images/button5on.gif";
	button6=new Image(); button6.src="/images/button6off.gif";
	button6h=new Image(); button6h.src="/images/button6on.gif";
}

function img_act(p) {if (j) {on =  eval (p + "h.src"); document[p].src = on;}}
function img_inact(p) {if (j) {off =  eval (p + ".src"); document[p].src = off;}}
//-->

/*
pop-up window code
Author: Eric King http://redrival.com/eak/
*/
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}

/* 
pop-up window usage:
<a href="page.htm" onclick="NewWindow(this.href,'main','800','450','no','center');return false">link_here</a>
*/
