
var newWindow01

function quotemore(url,winWidth,winHeight)	
{
newWindow01 = window.open(url,'_blank', 'width='+winWidth+',height='+winHeight+',statusbar=no');
if (newWindow01 == null){
alert("Your browser has blocked a page from being displayed.\nPlease add this site to your popup blocker's allow list to ensure your access to all pages on our site.");
	} else {
		if (newWindow01.focus) newWindow01.focus();
	}
}