/*Answer Book*/
function answerBook(catID1,catID2,catID3)
{
	window.open('https://kb.cuanswers.com/kentcounty/consumer/search.asp?catID1='+catID1+'&catID2='+catID2+'&catID3='+catID3,'answerBook', 'width=760,height=500, scrollbars=yes, resizable=yes, status=yes, directories=yes, location=yes, toolbar=yes, menubar=yes')
}

function answerBook2(url)
{
	/*This function is for non-category pages, like "Ask a Question".*/
	window.open('https://kb.cuanswers.com/kentcounty/consumer/'+url, 'answerBook', 'width=760,height=500, scrollbars=yes, resizable=yes, status=yes, directories=yes, location=yes, toolbar=yes, menubar=yes')
}

function externalLinks()
{
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchorElement = anchors[i];
		if (anchorElement.getAttribute("href") && anchorElement.getAttribute("rel") == "new") {
			anchorElement.target = "_blank";
		}
		
		if (anchorElement.getAttribute("href") && anchorElement.getAttribute("rel") == "pdf") {
			anchorElement.target = "_blank";
		}
	}
}

/*PopUp Functions*/
function popUp(windowLocate, winWidth, winHeight, winOptions)
{
var poppedWin=window.open(windowLocate, "popUpWin", "scrollbars, resizable, width="+winWidth+", height="+winHeight);
poppedWin.moveTo(((screen.width/2)-(winWidth/2)),((screen.height/2)-(winHeight/2)));
poppedWin.focus();
}

window.onload=externalLinks;