window.status = "pippo";

function zoomIn(obj)
{
	
	obj.width = obj.width * 2;
	obj.height = obj.height * 2;
}

function zoomOut(obj)
{
	obj.width = obj.width / 2;
	obj.height = obj.height / 2;
}
