// JavaScript Document
function displayText(obj_id,str)
{
	var obj	= $(obj_id);//getElementById(obj_id);
	obj.innerText	= str;
}

