function PatternWindow(pg){
	var url = '/_v2/imgz/liners_IG/linerpage.cfm?pattern=' + pg;
	//?pattern=Bayview.jpg
	ColdFusion.Window.show('LW');
	ColdFusion.navigate(url,'LW');
}

function InfoWindow(pg,ext){
	var winwide = screen.width;
	var winhigh = screen.height;
	var winwidth = 740;
	var winheight = 600;
	// center the window
	var wintop = (winhigh - winheight) / 2;
	var winleft = (winwide - winwidth) / 2;
	// url to open - all info pages must be in the inclusions folder and start with VIEW
	var url = '/_v2/pagez/inclusions/view' + pg + '.' + ext + '?jspop=1';
	// open window 
	var winOpts2 = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,top=' + wintop + ',left=' + winleft + ',width=' + winwidth + ',height=' + winheight + '';
	RemoteWin2 = window.open(url,"Liners",winOpts2);
}
