
/* window.open()
--------------------------------------------- */

window.onload = getSrc;

function getSrc() {
	var x = document.getElementById('sample').getElementsByTagName('a');
	for (var i=0; i<x.length; i++)
	{
		x[i].onclick = function () { return openWin(this.href);	}
		x[i].onkeypress = function () { return openWin(this.href);	}
	}
}
 
function openWin(target) {
	open(target);
	return false;
}
