// Popup window function

function popupWindow(url, name, attributes){
	var newWindow = window.open(url, name, attributes);
	newWindow.focus();
}

// Header Search Display Functions

function searchFocus(value) {
	if (value == 'Enter Keywords') {
		document.getElementById('searchKeyword').value = '';
	}
}

function searchBlur(value) {
	if (value == '') {
		document.getElementById('searchKeyword').value = 'Enter Keywords';
	}
}