

function PreLoadImg()
{
	Image1= new Image(800,115);
	Image1.src = "images/hhome.jpg";

	Image2= new Image(800,115);
	Image2.src = "images/htires.jpg";

	Image3= new Image(800,115);
	Image3.src = "images/hservices.jpg";

	Image4= new Image(800,115);
	Image4.src = "images/hdirections.jpg";

	Image5= new Image(800,115);
	Image5.src = "images/habout.jpg";

	Image6= new Image(370,300);
	Image6.src = "images/tiresa_bf.jpg";

	Image7= new Image(370,300);
	Image7.src = "images/tiresa_un.jpg";

	Image8= new Image(370,300);
	Image8.src = "images/tiresa_mi.jpg";

	Image9= new Image(370,300);
	Image9.src = "images/tiresa_ca.jpg";

	Image10= new Image(800,135);
	Image10.src = "images/headera.jpg";

}







function OpenNewWindowEx(pth2, cX, cY, al) 
{
	
	

	if(al=="AL_CENTER")
	{
		nLeft = (screen.width / 2) - (cX /2);
		nTop = (screen.height / 2) - (cY /2);
	}

	if(al=="AL_NONE")
	{
		nLeft = 0;
		nTop = 0;
	}

	
	props=window.open(pth2, "poppage2", "toolbars=0, scrollbars=1, location=0, statusbars=0, menubars=0, resizable=1, width="+cX+", height="+cY+", left="+nLeft+", top="+nTop+"");	
	
	props.focus();
}

function OpenNewWindow(pth2) 
{
	
	
	cX = 550;
	cY = 400;

	nLeft = (screen.width / 2) - (cX /2);
	nTop = (screen.height / 2) - (cY /2);

	
	props=window.open(pth2, "poppage2", "toolbars=0, titlebar=NO, scrollbars=1, location=0, statusbars=0, menubars=0, resizable=1, width="+cX+", height="+cY+", left="+nLeft+", top="+nTop+"");	
	
	props.focus();
}


