function NewWnd(element) {
 var newWindow = window.open(element.getAttribute('href'), '_blank');
 newWindow.focus();
 return false;
}

function iLink(url) {
	window.location.href=url;
}

