// Function to make DIV area act as its child A tag

function doDivLink(getDiv) {
	if(document.getElementsByTagName) {
		newLocation = getDiv.getElementsByTagName('A').item(0).href;
		newTarget = getDiv.getElementsByTagName('A').item(0).target;
		if(newTarget == "_blank") {
			window.open(newLocation);
		} else window.location = newLocation;
	}
}

function clearDivLink() {
	if(document.getElementsByTagName) return false;
}