//Add a new image to the variable list if it will become a rollover.
//Follow the numerical syntax exactly.
//Notice the difference in the name of the image in the index file
//and the variable name of the image.

function rollOver () {}
	if(document.images)
{
var acs1=new Image(); acs1.src='images/whatover.gif';
var acs2=new Image(); acs2.src='images/ourover.gif';
var acs3=new Image(); acs3.src='images/zipover.gif';
var acs4=new Image(); acs4.src='images/respover.gif';
var acs5=new Image(); acs5.src='images/locover.gif';
var acs6=new Image(); acs6.src='images/contactover.gif';
var acs7=new Image(); acs7.src='images/whatover2.gif';
var acs8=new Image(); acs8.src='images/ourover2.gif';
var acs9=new Image(); acs9.src='images/zipover2.gif';
var acs10=new Image(); acs10.src='images/respover2.gif';
var acs11=new Image(); acs11.src='images/locover2.gif';
var acs12=new Image(); acs12.src='images/contactover2.gif';
var acs13=new Image(); acs13.src='images/homeover.gif';
}  

function new_window(url, winwidth, winheight, winleft, wintop) {

parameters = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width="+winwidth+",height="+winheight+",left="+winleft+",top="+wintop;

link = window.open(url,"Link",parameters);


}



