<!--
function AutoResWindow(theURL,winName,width,height,features) { 

	if(window.screen){
		NewWin_W=(width/800)*100;
		NewWin_H=(height/width)*100;
		Win_W=(screen.width*NewWin_W)/100;
		Win_H=(Win_W*NewWin_W)/100;
		x=(screen.width-Win_W)/2;
		y=(screen.height-Win_H)/2;
	}else{
		x=0;
		y=0;
		Win_W=w;
		Win_H=y;
	}
	winfeatures=("top="+y+",left="+x+",width="+Win_W+",height="+Win_H+","+features);
	window.open(theURL,winName,winfeatures);
}
leftPos = 0
if (screen) {
	leftPos = screen.width-660
}

function secondWindow() {
	CLCWindow = window.open('http://www.mapquest.com/maps/map.adp?city=Hurst&state=TX&address=10600+E+Hurst+Blvd&zip=76053&country=us&zoom=8', 'CLCWin',
	   'status=no,titlebar=no,toolbar=no,menubar=yes,resizable=yes,scrollbars=yes,width=620,height=585,left='+leftPos+',top=0')
}
-->