function WindowPop(t,x)
{
		var PopUpTotalWidth = 570;
		var LeftPixel1 = ((screen.availWidth) - PopUpTotalWidth) / 2;
		var PopUpTotalHeight = 430;
		var TopPixel = ((screen.availHeight) - PopUpTotalHeight) / 2;
		var locStr = 'locatorFinder.cfm?t='+t+'&x='+x;
		window.open(locStr,'popper','top='+TopPixel+',screeny='+TopPixel+',left='+LeftPixel1+',screenx='+LeftPixel1+',width=570,height=430,buttons=no,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,directories=no,toolbar=no');
}