﻿<!--
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 thirdWindow() {
	CLCWindow = window.open('http://www.mapquest.com/maps/map.adp?formtype=address&addtohistory=&address=5643%20Rufe%20Snow%20Dr&city=North%20Richland%20Hills&state=TX&zipcode=76180%2d6081&country=US&geodiff=1', 'CLCWin',
	   'status=no,titlebar=no,toolbar=no,menubar=yes,resizable=yes,scrollbars=yes,width=620,height=585,left='+leftPos+',top=0')
}
-->
