// Allows the header image to be clickable
function clickImage(url, new_win) {
	var loc;
	
	if (new_win == "false")
		loc = "_self";
	else
		loc ="_blank";
		
	window.open(url, loc)
}