function ifdef(v) {
	return typeof v != "undefined";
}

function onw(elemt) {
	var url = elemt.href;
	var result = false;
	if (ifdef(url)) {
		result = window.open(url);
	}
	return (!result);
}
