
function info(id)
{
var x = 0;
var y = 0;
	var obid = id;
	styleObj = document.getElementById(obid).style;
	styleObj.right = x;
	styleObj.top = y;

}



function over (id)
{
	var obid = id;
	styleObj = document.getElementById(obid).style;
	styleObj.fontSize = "xx-large";
	styleObj.width = "300px";
	//styleObj.backgroundColor = "red";


}

function out (id)
{
//eval ("document.all."+id+".
	var obid = id;
	styleObj = document.getElementById(obid).style;


}
