function ActivateJSONP() {
	var script = document.getElementById('myJSONPCall');
	script.setAttribute('src', 'http://www.numenore.com/test/script.php?jsonCallback=myCallback');
}
function myCallback(obj) {
	alert(obj.text);
}

