function targetBlank (URL){
	window.open(URL)
}

function selectInputText(id) {
   var obj = document.getElementById(id);
   obj.focus();
   obj.select();
}
